stifan Mon, 06/02/2008 - 12:13 Forums: Other usage issuesi'have a Geom_CartesianPoint how can i retrive the TopoDS_Vertex OF This point. think you; Rob Bachrach Mon, 06/02/2008 - 15:17 There is no existing vertex directly related to a given point. However, you can create a new vertex for Geom_CartesianPoint "gcp" by: TopoDS_Vertex v = BRepBuilderAPI_MakeVertex(gcp.Pnt()); If you have a shape and are looking for a matching vertex, you would need to find the nearest shape to your cartesian point. Rob Log in to post comments
Mon, 06/02/2008 - 15:17
There is no existing vertex directly related to a given point. However, you can create a new vertex for Geom_CartesianPoint "gcp" by:
TopoDS_Vertex v = BRepBuilderAPI_MakeVertex(gcp.Pnt());
If you have a shape and are looking for a matching vertex, you would need to find the nearest shape to your cartesian point.
Rob