Functions | |
def | geompy.MakeSketcher |
Create a sketcher (wire or face), following the textual description, passed through theCommand argument. | |
def | geompy.MakeSketcherOnPlane |
Create a sketcher (wire or face), following the textual description, passed through theCommand argument. | |
def | geompy.Make3DSketcher |
Create a sketcher wire, following the numerical description, passed through theCoordinates argument. |
def geompy.MakeSketcher | ( | self, | |
theCommand, | |||
theWorkingPlane = [0 |
|||
) |
Create a sketcher (wire or face), following the textual description, passed through theCommand argument.
Edges of the resulting wire or face will be arcs of circles and/or linear segments.
Format of the description string have to be the following:
"Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
Where:
theCommand | String, defining the sketcher in local coordinates of the working plane. |
theWorkingPlane | Nine double values, defining origin, OZ and OX directions of the working plane. |
References geompy.ParseSketcherCommand(), and geompy.RaiseIfFailed().
def geompy.MakeSketcherOnPlane | ( | self, | |
theCommand, | |||
theWorkingPlane | |||
) |
Create a sketcher (wire or face), following the textual description, passed through theCommand argument.
For format of the description string see MakeSketcher() method.
theCommand | String, defining the sketcher in local coordinates of the working plane. |
theWorkingPlane | Planar Face or LCS(Marker) of the working plane. |
References geompy.RaiseIfFailed().
def geompy.Make3DSketcher | ( | self, | |
theCoordinates | |||
) |
Create a sketcher wire, following the numerical description, passed through theCoordinates argument.
theCoordinates | double values, defining points to create a wire, passing from it. |
References geompy.ParseParameters(), and geompy.RaiseIfFailed().