Merge pull request #219 from tomate44/tomate44-BezierSurface-fix

fix VDegree
This commit is contained in:
wwmayer
2016-07-15 13:57:52 +02:00
committed by GitHub

View File

@@ -740,7 +740,7 @@ Py::Int BezierSurfacePy::getVDegree(void) const
{
Handle_Geom_BezierSurface surf = Handle_Geom_BezierSurface::DownCast
(getGeometryPtr()->handle());
return Py::Int(surf->UDegree());
return Py::Int(surf->VDegree());
}
Py::Int BezierSurfacePy::getMaxDegree(void) const