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>2013-04-12 04:50:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-12 04:50:40 +0400
commit502ddd312879316c13f66d84c4ffe0927df53a06 (patch)
tree51a18bef238f47e385d909c591e98d2023086854 /source/blender/freestyle
parent742c1cb3284fed8a9fdef1cb899a3eaaf896cd41 (diff)
code cleanup: warnings and style.
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeRep.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeRep.cpp b/source/blender/freestyle/intern/stroke/StrokeRep.cpp
index 42fd9660b08..dacf463ab88 100644
--- a/source/blender/freestyle/intern/stroke/StrokeRep.cpp
+++ b/source/blender/freestyle/intern/stroke/StrokeRep.cpp
@@ -98,10 +98,12 @@ static bool notValid (Vec2r p)
(p[0] < -HUGE_COORD) || (p[1] < -HUGE_COORD);
}
+#if 0
static real crossP(const Vec2r& A, const Vec2r& B)
{
return A[0] * B[1] - A[1] * B[0];
}
+#endif
void Strip::createStrip (const vector<StrokeVertex*>& iStrokeVertices)
{