Skip to content

Commit 8a93fbb

Browse files
committed
Changed a few comments to doxygen format.
1 parent 5619e41 commit 8a93fbb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

xs/src/libslic3r/Print.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ class PrintObject
7575
friend class Print;
7676

7777
public:
78-
// map of (vectors of volume ids), indexed by region_id
79-
/* (we use map instead of vector so that we don't have to worry about
80-
resizing it and the [] operator adds new items automagically) */
78+
/// map of (vectors of volume ids), indexed by region_id
79+
/// (we use map instead of vector so that we don't have to worry about
80+
/// resizing it and the [] operator adds new items automagically)
8181
std::map< size_t,std::vector<int> > region_volumes;
82-
PrintObjectConfig config;
82+
PrintObjectConfig config; //< Configuration
8383
t_layer_height_ranges layer_height_ranges;
8484

8585
LayerHeightSpline layer_height_spline;
8686

87-
// this is set to true when LayerRegion->slices is split in top/internal/bottom
88-
// so that next call to make_perimeters() performs a union() before computing loops
87+
/// this is set to true when LayerRegion->slices is split in top/internal/bottom
88+
/// so that next call to make_perimeters() performs a union() before computing loops
8989
bool typed_slices;
9090

91-
Point3 size; // XYZ in scaled coordinates
91+
Point3 size; //< XYZ in scaled coordinates
9292

9393
// scaled coordinates to add to copies (to compensate for the alignment
9494
// operated when creating the object but still preserving a coherent API

0 commit comments

Comments
 (0)