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.cpp61
1 files changed, 30 insertions, 31 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeIO.cpp b/source/blender/freestyle/intern/stroke/StrokeIO.cpp
index 9b428a81d1e..686313cd04e 100644
--- a/source/blender/freestyle/intern/stroke/StrokeIO.cpp
+++ b/source/blender/freestyle/intern/stroke/StrokeIO.cpp
@@ -25,44 +25,43 @@
namespace Freestyle {
-ostream& operator<<(ostream& out, const StrokeAttribute& iStrokeAttribute)
+ostream &operator<<(ostream &out, const StrokeAttribute &iStrokeAttribute)
{
- out << " StrokeAttribute" << endl;
- out << " color : (" << iStrokeAttribute.getColorR() << "," << iStrokeAttribute.getColorG() <<
- "," << iStrokeAttribute.getColorB() << ")" << endl;
- out << " alpha : " << iStrokeAttribute.getAlpha() << endl;
- out << " thickness : " << iStrokeAttribute.getThicknessR() << ", " << iStrokeAttribute.getThicknessL() <<
- endl;
- out << " visible : " << iStrokeAttribute.isVisible() << endl;
- return out;
+ out << " StrokeAttribute" << endl;
+ out << " color : (" << iStrokeAttribute.getColorR() << ","
+ << iStrokeAttribute.getColorG() << "," << iStrokeAttribute.getColorB() << ")" << endl;
+ out << " alpha : " << iStrokeAttribute.getAlpha() << endl;
+ out << " thickness : " << iStrokeAttribute.getThicknessR() << ", "
+ << iStrokeAttribute.getThicknessL() << endl;
+ out << " visible : " << iStrokeAttribute.isVisible() << endl;
+ return out;
}
-ostream& operator<<(ostream& out, const StrokeVertex& iStrokeVertex)
+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 << iStrokeVertex.attribute() << endl;
- return out;
+ 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 << iStrokeVertex.attribute() << endl;
+ return out;
}
-ostream& operator<<(ostream& out, const Stroke& iStroke)
+ostream &operator<<(ostream &out, const Stroke &iStroke)
{
- out << "Stroke" << endl;
- 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)
- {
- out << *(*v) << endl;
- }
- return out;
+ out << "Stroke" << endl;
+ 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) {
+ out << *(*v) << endl;
+ }
+ return out;
}
} /* namespace Freestyle */