mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 07:06:03 +08:00
Changed a few comments to doxygen format.
This commit is contained in:
parent
5619e41dd1
commit
8a93fbbd0c
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user