Changed a few comments to doxygen format.

This commit is contained in:
Joseph Lenox 2018-04-25 18:50:51 -05:00
parent 5619e41dd1
commit 8a93fbbd0c

View File

@ -75,20 +75,20 @@ class PrintObject
friend class Print; friend class Print;
public: public:
// map of (vectors of volume ids), indexed by region_id /// map of (vectors of volume ids), indexed by region_id
/* (we use map instead of vector so that we don't have to worry about /// (we use map instead of vector so that we don't have to worry about
resizing it and the [] operator adds new items automagically) */ /// resizing it and the [] operator adds new items automagically)
std::map< size_t,std::vector<int> > region_volumes; std::map< size_t,std::vector<int> > region_volumes;
PrintObjectConfig config; PrintObjectConfig config; //< Configuration
t_layer_height_ranges layer_height_ranges; t_layer_height_ranges layer_height_ranges;
LayerHeightSpline layer_height_spline; LayerHeightSpline layer_height_spline;
// this is set to true when LayerRegion->slices is split in top/internal/bottom /// this is set to true when LayerRegion->slices is split in top/internal/bottom
// so that next call to make_perimeters() performs a union() before computing loops /// so that next call to make_perimeters() performs a union() before computing loops
bool typed_slices; bool typed_slices;
Point3 size; // XYZ in scaled coordinates Point3 size; //< XYZ in scaled coordinates
// scaled coordinates to add to copies (to compensate for the alignment // scaled coordinates to add to copies (to compensate for the alignment
// operated when creating the object but still preserving a coherent API // operated when creating the object but still preserving a coherent API