Initial DrawingViewDetail

This commit is contained in:
WandererFan
2016-11-20 07:13:45 -05:00
committed by Yorik van Havre
parent 95768acf65
commit 906bffba8f
19 changed files with 1253 additions and 5 deletions

View File

@@ -500,7 +500,7 @@ bool BSpline::isLine()
bool result = false;
BRepAdaptor_Curve c(occEdge);
Handle_Geom_BSplineCurve spline = c.BSpline();
if (spline->Degree() == 1) {
if (spline->NbPoles() == 2) {
result = true;
}
return result;