The Part module is the direct connection between FreeCAD and the OpenCasCade kernel. It provides mainly TopoShapes which is the main object type used by OpenCascade. The Part module also contains a variety of convenience functions to create and manipulate topoShapes. Example:
import Part mycube = Part.makeBox(2,2,2) Part.show(mycube)
Description: Helper method to convert a pythonocc shape to an internal shape
Returns: A Part.Shape
Description: Helper method to sort an unsorted list of edges so that afterwards two adjacent edges share a common vertex
Returns: a list of edges
Description: Helper method to convert an internal shape to pythonocc shape
Returns: an OCC.Shape
Description: Helper method to sort and cluster a variety of edges
Returns:
Description: Insert the file (path given as first argument) into the given document (second argument).
Returns:
Description: Makes a box located at pnt with the dimensions (length,width,height). By default pnt is Vector(0,0,0) and dir is Vector(0,0,1)
Returns: the created shape
Description: Makes a circle with a given radius. By default pnt is Vector(0,0,0), dir is Vector(0,0,1), angle1 is 0 and angle2 is 360
Returns: the created shape
Description: Creates a compound out of a list of shapes.
Returns: the created shape
Description: Makes a cone with given radii and height. By default pnt is Vector(0,0,0), dir is Vector(0,0,1) and angle is 360
Returns: the created shape
Description: Makes a cylinder with a given radius and height. By default pnt is Vector(0,0,0),dir is Vector(0,0,1) and angle is 360
Returns: the created shape
Description: Makes a helix shape with a given pitch, height and radius. Defaults to right-handed cylindrical helix. Non-zero angle parameter produces a conical helix. Lefthand True produces left handed helix. Heightstyle applies only to conical helices. Heightstyle False (default) will cause the height parameter to be interpreted as the length of the side of the underlying frustum. Heightstyle True will cause the height parameter to be interpreted as the vertical height of the helix. Pitch is "metric pitch" (advance/revolution). For conical helix, radius is the minor radius.
Returns: the created shape
Description: Makes a line of two points
Returns: the created shape
Description: Creates a loft shape using the list of profiles. Optionally make result a solid (vs surface/shell) or make result a ruled surface.
Returns: the created shape
Description: Makes a plane. By default pnt is Vector(0,0,0) and dir is Vector(0,0,1)
Returns: the created shape
Description: Makes a revolved shape by rotating the curve or a portion of it around an axis given by (pnt,dir). By default vmin/vmax are set to bounds of the curve,angle is 360,pnt is Vector(0,0,0) and dir is Vector(0,0,1)
Returns: the created shape
Description: Creates a ruled surface out of two edges or wires. If wires are used then these must have the same number of edges.
Returns: the created shape
Description: Creates a shell out of a list of faces. Note: Resulting shell should be manifold. Non-manifold shells are not well supported.
Returns: the created shape
Description: Creates a solid out of the shells inside a shape.
Returns: the created shape
Description: Makes a sphere (or partial sphere) with a given radius. By default center_pnt is Vector(0,0,0), axis_dir is Vector(0,0,1), V_startAngle is 0, V_endAngle is 90 and U_angle is 360
Returns: the created shape
Description: Makes a torus with a given radii and angles. By default pnt is Vector(0,0,0),dir is Vector(0,0,1),angle1 is 0,angle2 is 360 and angle is 360
Returns: the created shape