point_to_occ
- compas_occ.conversions.point_to_occ(point)
- Convert a COMPAS point to an OCC point. - Parameters:
- pointPoint
- The COMPAS point to convert. 
 
- point
- Returns:
- gp_Pnt
 
 - Examples - >>> from compas.geometry import Point >>> from compas_occ.conversions import point_to_occ >>> point = Point(0, 0, 0) >>> point_to_occ(point) <class 'gp_Pnt'>