From 8a93fbbd0c6ae6742997ca32d363719e3980d613 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Wed, 25 Apr 2018 18:50:51 -0500 Subject: [PATCH] Changed a few comments to doxygen format. --- xs/src/libslic3r/Print.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/xs/src/libslic3r/Print.hpp b/xs/src/libslic3r/Print.hpp index 196565b571..7f83c684fa 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 > 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