
Tue, 04/08/2008 - 19:42
Forums:
how i can display the paramter of vertex for exemple in The window of console application:
for exemple i like to display the coordoniate of gp_Pnt:
gp_Pnt ageometricPoint=BRepTool::Pnt(acurrentVertex)
think you...........
Wed, 04/09/2008 - 11:21
A lot of classes in OCC have a Dump() method.
Fot the ones for which Dump is not available you have to do it yourself.
gp_Pnt point;
cout << "gp_Pnt (" << point.X() << ", " << point.Y() << ", " << point.Z() << ")";