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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-05-26 11:46:14 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-05-26 11:49:00 +0400
commit4c38e826dc4c5cbfbb0f53f6c0347e550261f4d0 (patch)
treeaed9822f064b4990a6e206e0e54ee4990c02c9b3 /source/blender/freestyle/intern/view_map/Silhouette.h
parent34862b5b57a6ddaa8989ad0c693450de92666af9 (diff)
Fix for a missing code update in my commit rB08528f577dcb.
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Silhouette.h')
-rw-r--r--source/blender/freestyle/intern/view_map/Silhouette.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index 2d0acde3f2b..d838b98c1a8 100644
--- a/source/blender/freestyle/intern/view_map/Silhouette.h
+++ b/source/blender/freestyle/intern/view_map/Silhouette.h
@@ -129,7 +129,7 @@ public: // Implementation of Interface0D
/*! Returns the 2D point. */
virtual Vec2r getPoint2D() const
{
- return Vec2f(_Point2D.x(), _Point2D.y());
+ return Vec2r(_Point2D.x(), _Point2D.y());
}
/*! Returns the FEdge that lies between this Svertex and the Interface0D given as argument. */