Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Lenox <lenox.joseph@gmail.com>2018-04-26 02:50:51 +0300
committerJoseph Lenox <lenox.joseph@gmail.com>2018-04-26 02:50:51 +0300
commit8a93fbbd0c6ae6742997ca32d363719e3980d613 (patch)
treefcf723ceeace089e618d1ed0ed130dd115a85cac
parent5619e41dd1ac8fb6363dd265b34bf79ba5bb0f7f (diff)
Changed a few comments to doxygen format.
-rw-r--r--xs/src/libslic3r/Print.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/xs/src/libslic3r/Print.hpp b/xs/src/libslic3r/Print.hpp
index 196565b57..7f83c684f 100644
--- a/xs/src/libslic3r/Print.hpp
+++ b/xs/src/libslic3r/Print.hpp
@@ -75,20 +75,20 @@ class PrintObject
friend class Print;
public:
- // 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
- resizing it and the [] operator adds new items automagically) */
+ /// 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
+ /// resizing it and the [] operator adds new items automagically)
std::map< size_t,std::vector<int> > region_volumes;
- PrintObjectConfig config;
+ PrintObjectConfig config; //< Configuration
t_layer_height_ranges layer_height_ranges;
LayerHeightSpline layer_height_spline;
- // 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
+ /// 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
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
// operated when creating the object but still preserving a coherent API