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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/stroke/Stroke.h')
-rw-r--r--source/blender/freestyle/intern/stroke/Stroke.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/freestyle/intern/stroke/Stroke.h b/source/blender/freestyle/intern/stroke/Stroke.h
index 96a4d2d61ea..209ec86edef 100644
--- a/source/blender/freestyle/intern/stroke/Stroke.h
+++ b/source/blender/freestyle/intern/stroke/Stroke.h
@@ -349,7 +349,7 @@ class StrokeVertex : public CurvePoint {
/** Builds a stroke vertex from a CurvePoint */
StrokeVertex(CurvePoint *iPoint);
- /** Builds Stroke Vertex from 2 stroke vertices and an interpolation parameter*/
+ /** Builds Stroke Vertex from 2 stroke vertices and an interpolation parameter. */
StrokeVertex(StrokeVertex *iA, StrokeVertex *iB, float t3);
/** Builds a stroke from a view vertex and an attribute */
@@ -378,7 +378,7 @@ class StrokeVertex : public CurvePoint {
return getPoint2D();
}
- /** Returns the ith 2D point coordinate (i=0 or 1)*/
+ /** Returns the ith 2D point coordinate (i=0 or 1). */
inline real operator[](const int i) const
{
return _Point2d[i];
@@ -516,9 +516,9 @@ class Stroke : public Interface1D {
/** The different blending modes available to similate the interaction media-medium. */
typedef enum {
- DRY_MEDIUM, /**< To simulate a dry medium such as Pencil or Charcoal.*/
- HUMID_MEDIUM, /**< To simulate ink painting (color subtraction blending).*/
- OPAQUE_MEDIUM, /**< To simulate an opaque medium (oil, spray...).*/
+ DRY_MEDIUM, /**< To simulate a dry medium such as Pencil or Charcoal. */
+ HUMID_MEDIUM, /**< To simulate ink painting (color subtraction blending). */
+ OPAQUE_MEDIUM, /**< To simulate an opaque medium (oil, spray...). */
} MediumType;
public: