Fix for a missing code update in my commit rB08528f577dcb.

This commit is contained in:
Tamito Kajiyama 2014-05-26 16:46:14 +09:00
parent 34862b5b57
commit 4c38e826dc
1 changed files with 1 additions and 1 deletions

View File

@ -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. */