
Tue, 11/22/2005 - 22:16
Forums:
Does anyone know how to get the type of a Geom_Curve?
I can only get the type of anEdge as follows:
BRepAdaptor_Curve aAd1(E1);
aAd1.GetType();
Thanks a lot!
Does anyone know how to get the type of a Geom_Curve?
I can only get the type of anEdge as follows:
BRepAdaptor_Curve aAd1(E1);
aAd1.GetType();
Thanks a lot!
Tue, 11/22/2005 - 22:31
GeomAdaptor_Curve
it is the main goal of an adaptor (See Design Patterns) to be able to use Topology or Geometry for the same functionnalities
Stephane
Tue, 11/22/2005 - 22:56
Stephane,
Thank you. I just find that GeomAdaptor_Curve inherits from Adaptor3d_Curve. which has a member function GetType().
Ming