Skip to content

Commit

Permalink
Add default initializer
Browse files Browse the repository at this point in the history
add default initialization for grid resolutions
  • Loading branch information
diivm committed Mar 6, 2020
1 parent 0bb69c0 commit aa50653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion surface/include/pcl/surface/marching_cubes.h
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ namespace pcl
std::vector<float> grid_;

/** \brief The grid resolution */
int res_x_, res_y_, res_z_;
int res_x_ = 32, res_y_ = 32, res_z_ = 32;

/** \brief bounding box */
Eigen::Array3f upper_boundary_;
Expand Down

0 comments on commit aa50653

Please sign in to comment.