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 <lordofhyphens@gmail.com>2018-02-25 02:53:29 +0300
committerGitHub <noreply@github.com>2018-02-25 02:53:29 +0300
commit560c2b380e518b20ceecf0205021b174d7130732 (patch)
tree682469b7c7fcd2691f3502f9299f23404b8af4ed
parentf3b42ede89f60be2217a12ed61b7f113db1a57c6 (diff)
Use doxygen comments.alexrj_gyroid
-rw-r--r--xs/src/libslic3r/Fill/FillGyroid.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/xs/src/libslic3r/Fill/FillGyroid.hpp b/xs/src/libslic3r/Fill/FillGyroid.hpp
index 1174c9f2a..ed4b0922f 100644
--- a/xs/src/libslic3r/Fill/FillGyroid.hpp
+++ b/xs/src/libslic3r/Fill/FillGyroid.hpp
@@ -17,12 +17,12 @@ public:
virtual Fill* clone() const { return new FillGyroid(*this); };
virtual ~FillGyroid() {}
- // require bridge flow since most of this pattern hangs in air
+ /// require bridge flow since most of this pattern hangs in air
virtual bool use_bridge_flow() const { return true; }
protected:
- // mult of density, to have a good %of weight for each density parameter
+ /// mult of density, to have a good %of weight for each density parameter
float scaling;
@@ -32,16 +32,16 @@ protected:
ExPolygon &expolygon,
Polylines *polylines_out);
- // create the gyroid grid to clip.
+ /// create the gyroid grid to clip.
Polylines makeGrid(coord_t gridZ, double density, double layer_width, size_t gridWidth, size_t gridHeight, size_t curveType);
- //add line poly in reverse if needed into array
+ ///add line poly in reverse if needed into array
inline void correctOrderAndAdd(const int num, Polyline poly, Polylines &array);
- //create a curved horinzontal line (for each x, compute y)
+ ///create a curved horinzontal line (for each x, compute y)
Polyline makeLineHori(double xPos, double yPos, double width, double height,
double currentYBegin, double segmentSize, coord_t scaleFactor,
double zCs, double zSn,
bool flip, double decal=0);
- //create a curved vertival line (for each y, compute x)
+ ///create a curved vertival line (for each y, compute x)
Polyline makeLineVert(double xPos, double yPos, double width, double height,
double currentXBegin, double segmentSize, coord_t scaleFactor,
double zCs, double zSn,
@@ -51,4 +51,4 @@ protected:
} // namespace Slic3r
-#endif // slic3r_FillGyroid_hpp_ \ No newline at end of file
+#endif // slic3r_FillGyroid_hpp_