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/StrokeIO.cpp')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeIO.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeIO.cpp b/source/blender/freestyle/intern/stroke/StrokeIO.cpp
index a101ec67618..182ae258480 100644
--- a/source/blender/freestyle/intern/stroke/StrokeIO.cpp
+++ b/source/blender/freestyle/intern/stroke/StrokeIO.cpp
@@ -39,10 +39,11 @@
ostream& operator<<(ostream& out, const StrokeAttribute& iStrokeAttribute)
{
out << " StrokeAttribute" << endl;
- out << " color : (" << iStrokeAttribute.getColorR() << "," << iStrokeAttribute.getColorG()
- << "," << iStrokeAttribute.getColorB() << ")" << endl;
+ out << " color : (" << iStrokeAttribute.getColorR() << "," << iStrokeAttribute.getColorG() <<
+ "," << iStrokeAttribute.getColorB() << ")" << endl;
out << " alpha : " << iStrokeAttribute.getAlpha() << endl;
- out << " thickness : " << iStrokeAttribute.getThicknessR() << ", " << iStrokeAttribute.getThicknessL() << endl;
+ out << " thickness : " << iStrokeAttribute.getThicknessR() << ", " << iStrokeAttribute.getThicknessL() <<
+ endl;
out << " visible : " << iStrokeAttribute.isVisible() << endl;
return out;
}
@@ -52,10 +53,10 @@ ostream& operator<<(ostream& out, const StrokeVertex& iStrokeVertex)
out << " StrokeVertex" << endl;
out << " id : " << iStrokeVertex.getId() << endl;
out << " curvilinear length : " << iStrokeVertex.curvilinearAbscissa() << endl;
- out << " 2d coordinates : (" << iStrokeVertex.getProjectedX() << "," << iStrokeVertex.getProjectedY()
- << "," << iStrokeVertex.getProjectedZ() << ")" << endl;
- out << " 3d coordinates : (" << iStrokeVertex.getX() << "," << iStrokeVertex.getY()
- << "," << iStrokeVertex.getZ() << ")" << endl;
+ out << " 2d coordinates : (" << iStrokeVertex.getProjectedX() << "," << iStrokeVertex.getProjectedY() <<
+ "," << iStrokeVertex.getProjectedZ() << ")" << endl;
+ out << " 3d coordinates : (" << iStrokeVertex.getX() << "," << iStrokeVertex.getY() <<
+ "," << iStrokeVertex.getZ() << ")" << endl;
out << iStrokeVertex.attribute() << endl;
return out;
}
@@ -66,7 +67,10 @@ ostream& operator<<(ostream& out, const Stroke& iStroke)
out << " id : " << iStroke.getId() << endl;
out << " length : " << iStroke.getLength2D() << endl;
out << " medium type : " << iStroke.getMediumType() << endl;
- for(Stroke::const_vertex_iterator v = iStroke.vertices_begin(), vend = iStroke.vertices_end(); v != vend; ++v) {
+ for (Stroke::const_vertex_iterator v = iStroke.vertices_begin(), vend = iStroke.vertices_end();
+ v != vend;
+ ++v)
+ {
out << *(*v) << endl;
}
return out;