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:
authorCampbell Barton <ideasman42@gmail.com>2021-06-26 14:35:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-26 14:50:48 +0300
commitf1e49038543cf75766f4a220f62cdc6cdbc0e27d (patch)
tree0cec2c64739a6a4ca246fe26bed6fe629ea315cb /source/blender/freestyle/intern/stroke
parentfae5a907d4d1380f087f1226ebbd65d9d0718cc6 (diff)
Cleanup: full sentences in comments, improve comment formatting
Diffstat (limited to 'source/blender/freestyle/intern/stroke')
-rw-r--r--source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h4
-rw-r--r--source/blender/freestyle/intern/stroke/BasicStrokeShaders.h6
-rw-r--r--source/blender/freestyle/intern/stroke/ChainingIterators.h2
-rw-r--r--source/blender/freestyle/intern/stroke/Curve.h2
-rw-r--r--source/blender/freestyle/intern/stroke/Predicates0D.h4
-rw-r--r--source/blender/freestyle/intern/stroke/Predicates1D.h12
-rw-r--r--source/blender/freestyle/intern/stroke/Stroke.cpp4
-rw-r--r--source/blender/freestyle/intern/stroke/Stroke.h10
8 files changed, 22 insertions, 22 deletions
diff --git a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
index 07ef0a7039c..486e0fffcdd 100644
--- a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
+++ b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
@@ -66,13 +66,13 @@ class DensityF1D : public UnaryFunction1D<double> {
{
}
- /** Returns the string "DensityF1D"*/
+ /** Returns the string "DensityF1D". */
string getName() const
{
return "DensityF1D";
}
- /** the () operator.*/
+ /** the () operator. */
int operator()(Interface1D &inter)
{
result = integrate(
diff --git a/source/blender/freestyle/intern/stroke/BasicStrokeShaders.h b/source/blender/freestyle/intern/stroke/BasicStrokeShaders.h
index fcf661ea72f..2b578dd963a 100644
--- a/source/blender/freestyle/intern/stroke/BasicStrokeShaders.h
+++ b/source/blender/freestyle/intern/stroke/BasicStrokeShaders.h
@@ -66,7 +66,7 @@ class ConstantThicknessShader : public StrokeShader {
{
}
- /** Returns the string "ConstantThicknessShader".*/
+ /** Returns the string "ConstantThicknessShader". */
virtual string getName() const
{
return "ConstantThicknessShader";
@@ -126,7 +126,7 @@ class IncreasingThicknessShader : public StrokeShader {
_ThicknessMax = iThicknessMax;
}
- /** Destructor.*/
+ /** Destructor. */
virtual ~IncreasingThicknessShader()
{
}
@@ -171,7 +171,7 @@ class ConstrainedIncreasingThicknessShader : public StrokeShader {
_ratio = iRatio;
}
- /** Destructor.*/
+ /** Destructor. */
virtual ~ConstrainedIncreasingThicknessShader()
{
}
diff --git a/source/blender/freestyle/intern/stroke/ChainingIterators.h b/source/blender/freestyle/intern/stroke/ChainingIterators.h
index c0259471277..93aba258358 100644
--- a/source/blender/freestyle/intern/stroke/ChainingIterators.h
+++ b/source/blender/freestyle/intern/stroke/ChainingIterators.h
@@ -245,7 +245,7 @@ class ChainingIterator : public ViewEdgeInternal::ViewEdgeIterator {
return _increment;
}
- /* increments.*/
+ /* Increments. */
virtual int increment();
virtual int decrement();
};
diff --git a/source/blender/freestyle/intern/stroke/Curve.h b/source/blender/freestyle/intern/stroke/Curve.h
index cce5353a5c7..9a05fcd380b 100644
--- a/source/blender/freestyle/intern/stroke/Curve.h
+++ b/source/blender/freestyle/intern/stroke/Curve.h
@@ -61,7 +61,7 @@ using namespace Geometry;
*/
class CurvePoint : public Interface0D {
public: // Implementation of Interface0D
- /** Returns the string "CurvePoint"*/
+ /** Returns the string "CurvePoint". */
virtual string getExactTypeName() const
{
return "CurvePoint";
diff --git a/source/blender/freestyle/intern/stroke/Predicates0D.h b/source/blender/freestyle/intern/stroke/Predicates0D.h
index cd00d582b30..11cbfb1b831 100644
--- a/source/blender/freestyle/intern/stroke/Predicates0D.h
+++ b/source/blender/freestyle/intern/stroke/Predicates0D.h
@@ -137,7 +137,7 @@ class TrueUP0D : public UnaryPredicate0D {
{
}
- /** Returns the string "TrueUP0D"*/
+ /** Returns the string "TrueUP0D". */
string getName() const
{
return "TrueUP0D";
@@ -160,7 +160,7 @@ class FalseUP0D : public UnaryPredicate0D {
{
}
- /** Returns the string "FalseUP0D"*/
+ /** Returns the string "FalseUP0D". */
string getName() const
{
return "FalseUP0D";
diff --git a/source/blender/freestyle/intern/stroke/Predicates1D.h b/source/blender/freestyle/intern/stroke/Predicates1D.h
index ceb2e7fcc17..e7be9d863dc 100644
--- a/source/blender/freestyle/intern/stroke/Predicates1D.h
+++ b/source/blender/freestyle/intern/stroke/Predicates1D.h
@@ -144,7 +144,7 @@ class TrueUP1D : public UnaryPredicate1D {
{
}
- /** Returns the string "TrueUP1D"*/
+ /** Returns the string "TrueUP1D". */
string getName() const
{
return "TrueUP1D";
@@ -167,7 +167,7 @@ class FalseUP1D : public UnaryPredicate1D {
{
}
- /** Returns the string "FalseUP1D"*/
+ /** Returns the string "FalseUP1D". */
string getName() const
{
return "FalseUP1D";
@@ -225,7 +225,7 @@ class ContourUP1D : public UnaryPredicate1D {
Functions1D::CurveNatureF1D _getNature;
public:
- /** Returns the string "ContourUP1D"*/
+ /** Returns the string "ContourUP1D". */
string getName() const
{
return "ContourUP1D";
@@ -300,7 +300,7 @@ class EqualToTimeStampUP1D : public UnaryPredicate1D {
_timeStamp = ts;
}
- /** Returns the string "EqualToTimeStampUP1D"*/
+ /** Returns the string "EqualToTimeStampUP1D". */
string getName() const
{
return "EqualToTimeStampUP1D";
@@ -326,7 +326,7 @@ class EqualToChainingTimeStampUP1D : public UnaryPredicate1D {
_timeStamp = ts;
}
- /** Returns the string "EqualToChainingTimeStampUP1D"*/
+ /** Returns the string "EqualToChainingTimeStampUP1D". */
string getName() const
{
return "EqualToChainingTimeStampUP1D";
@@ -364,7 +364,7 @@ class ShapeUP1D : public UnaryPredicate1D {
_id = Id(idFirst, idSecond);
}
- /** Returns the string "ShapeUP1D"*/
+ /** Returns the string "ShapeUP1D". */
string getName() const
{
return "ShapeUP1D";
diff --git a/source/blender/freestyle/intern/stroke/Stroke.cpp b/source/blender/freestyle/intern/stroke/Stroke.cpp
index 0de3e03d44a..956ba2743d7 100644
--- a/source/blender/freestyle/intern/stroke/Stroke.cpp
+++ b/source/blender/freestyle/intern/stroke/Stroke.cpp
@@ -625,7 +625,7 @@ int Stroke::Resample(int iNPoints)
// add last:
++it;
++next;
- if ((it != itend) && (next == itend) /* && (t == 0.0f)*/) {
+ if ((it != itend) && (next == itend) /* && (t == 0.0f) */) {
newVertices.push_back(&(*it));
}
@@ -687,7 +687,7 @@ int Stroke::Resample(float iSampling)
++next;
}
// add last:
- if ((it != itend) && (next == itend) /* && (t == 0.0f)*/) {
+ if ((it != itend) && (next == itend) /* && (t == 0.0f) */) {
newVertices.push_back(&(*it));
}
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: