huangye Tue, 09/14/2010 - 04:49 Forums: Other usage issuesHow to decide which type is the curve, such as Geom_Curve object? Is it a circle, line, bspline or other types? How to decide? m-sazonov (not verified) Tue, 09/14/2010 - 09:34 if (aCurve->IsKind(STANDARD_TYPE(Geom_Circle))) ... else if (aCurve->IsKind(STANDARD_TYPE(Geom_Line))) ... Log in to post comments
Tue, 09/14/2010 - 09:34
if (aCurve->IsKind(STANDARD_TYPE(Geom_Circle)))
...
else if (aCurve->IsKind(STANDARD_TYPE(Geom_Line)))
...