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-24 08:56:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-24 08:59:34 +0300
commit4b9ff3cd42be427e478743648e9951bf8c189a04 (patch)
treeb0cb1462a8fdae38df4a0a1067349f3118d56a43 /source/blender/freestyle/intern/view_map
parent2e99a74df9ecfa18c4081cdcc82227e2e24f14b1 (diff)
Cleanup: comment blocks, trailing space in comments
Diffstat (limited to 'source/blender/freestyle/intern/view_map')
-rw-r--r--source/blender/freestyle/intern/view_map/Silhouette.h18
-rw-r--r--source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h2
-rw-r--r--source/blender/freestyle/intern/view_map/ViewMap.h4
3 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index 5a59f488b51..28cd140185c 100644
--- a/source/blender/freestyle/intern/view_map/Silhouette.h
+++ b/source/blender/freestyle/intern/view_map/Silhouette.h
@@ -69,26 +69,26 @@ class SShape;
/*! Class to define a vertex of the embedding. */
class SVertex : public Interface0D {
public: // Implementation of Interface0D
- /*! Returns the string "SVertex" .*/
+ /*! Returns the string "SVertex". */
virtual string getExactTypeName() const
{
return "SVertex";
}
// Data access methods
- /*! Returns the 3D x coordinate of the vertex .*/
+ /*! Returns the 3D x coordinate of the vertex. */
virtual real getX() const
{
return _Point3D.x();
}
- /*! Returns the 3D y coordinate of the vertex .*/
+ /*! Returns the 3D y coordinate of the vertex. */
virtual real getY() const
{
return _Point3D.y();
}
- /*! Returns the 3D z coordinate of the vertex .*/
+ /*! Returns the 3D z coordinate of the vertex. */
virtual real getZ() const
{
return _Point3D.z();
@@ -100,19 +100,19 @@ class SVertex : public Interface0D {
return _Point3D;
}
- /*! Returns the projected 3D x coordinate of the vertex .*/
+ /*! Returns the projected 3D x coordinate of the vertex. */
virtual real getProjectedX() const
{
return _Point2D.x();
}
- /*! Returns the projected 3D y coordinate of the vertex .*/
+ /*! Returns the projected 3D y coordinate of the vertex. */
virtual real getProjectedY() const
{
return _Point2D.y();
}
- /*! Returns the projected 3D z coordinate of the vertex .*/
+ /*! Returns the projected 3D z coordinate of the vertex. */
virtual real getProjectedZ() const
{
return _Point2D.z();
@@ -127,13 +127,13 @@ class SVertex : public Interface0D {
/*! Returns the FEdge that lies between this Svertex and the Interface0D given as argument. */
virtual FEdge *getFEdge(Interface0D &);
- /*! Returns the Id of the vertex .*/
+ /*! Returns the Id of the vertex. */
virtual Id getId() const
{
return _Id;
}
- /*! Returns the nature of the vertex .*/
+ /*! Returns the nature of the vertex. */
virtual Nature::VertexNature getNature() const;
/*! Cast the Interface0D in SVertex if it can be. */
diff --git a/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h b/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h
index 1fce4f4a965..6bc9cd2da59 100644
--- a/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h
+++ b/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h
@@ -215,7 +215,7 @@ class ViewEdgeXBuilder {
/*! Builds a smooth view edge, starting the face iFace. */
ViewEdge *BuildSmoothViewEdge(const OWXFaceLayer &iFaceLayer);
- /*! Makes a sharp viewedge */
+ /*! Makes a sharp viewedge. */
ViewEdge *BuildSharpViewEdge(const OWXEdge &iWEdge);
public:
diff --git a/source/blender/freestyle/intern/view_map/ViewMap.h b/source/blender/freestyle/intern/view_map/ViewMap.h
index 47a2e98418a..a6427f42b85 100644
--- a/source/blender/freestyle/intern/view_map/ViewMap.h
+++ b/source/blender/freestyle/intern/view_map/ViewMap.h
@@ -327,7 +327,7 @@ class ViewVertex : public Interface0D {
}
/* accessors */
- /*! Returns the nature of the vertex .*/
+ /*! Returns the nature of the vertex. */
virtual Nature::VertexNature getNature() const
{
return _Nature;
@@ -1097,7 +1097,7 @@ class ViewEdge : public Interface1D {
return _FEdgeB;
}
- /*! Returns the ViewShape to which this ViewEdge belongs to .*/
+ /*! Returns the ViewShape to which this ViewEdge belongs to. */
inline ViewShape *viewShape()
{
return _Shape;