[Bf-blender-cvs] [4c38e82] master: Fix for a missing code update in my commit rB08528f577dcb.

Tamito Kajiyama noreply at git.blender.org
Mon May 26 09:49:18 CEST 2014


Commit: 4c38e826dc4c5cbfbb0f53f6c0347e550261f4d0
Author: Tamito Kajiyama
Date:   Mon May 26 16:46:14 2014 +0900
https://developer.blender.org/rB4c38e826dc4c5cbfbb0f53f6c0347e550261f4d0

Fix for a missing code update in my commit rB08528f577dcb.

===================================================================

M	source/blender/freestyle/intern/view_map/Silhouette.h

===================================================================

diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index 2d0acde..d838b98 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. */




More information about the Bf-blender-cvs mailing list