@@ -2929,9 +2929,9 @@ def twistExtrude(
2929
2929
) -> T :
2930
2930
"""
2931
2931
Extrudes a wire in the direction normal to the plane, but also twists by the specified
2932
- angle over the length of the extrusion
2932
+ angle over the length of the extrusion.
2933
2933
2934
- The center point of the rotation will be the center of the workplane
2934
+ The center point of the rotation will be the center of the workplane.
2935
2935
2936
2936
See extrude for more details, since this method is the same except for the the addition
2937
2937
of the angle. In fact, if angle=0, the result is the same as a linear extrude.
@@ -3267,7 +3267,7 @@ def cut(
3267
3267
self : T , toCut : Union ["Workplane" , Solid , Compound ], clean : bool = True
3268
3268
) -> T :
3269
3269
"""
3270
- Cuts the provided solid from the current solid, IE, perform a solid subtraction
3270
+ Cuts the provided solid from the current solid, IE, perform a solid subtraction.
3271
3271
3272
3272
:param toCut: object to cut
3273
3273
:type toCut: a solid object, or a CQ object having a solid,
@@ -3742,7 +3742,7 @@ def sphere(
3742
3742
clean : bool = True ,
3743
3743
) -> T :
3744
3744
"""
3745
- Returns a 3D sphere with the specified radius for each point on the stack
3745
+ Returns a 3D sphere with the specified radius for each point on the stack.
3746
3746
3747
3747
:param radius: The radius of the sphere
3748
3748
:type radius: float > 0
@@ -3816,6 +3816,8 @@ def wedge(
3816
3816
clean : bool = True ,
3817
3817
) -> T :
3818
3818
"""
3819
+ Returns a 3D wedge with the specified dimensions for each point on the stack.
3820
+
3819
3821
:param dx: Distance along the X axis
3820
3822
:param dy: Distance along the Y axis
3821
3823
:param dz: Distance along the Z axis
@@ -3917,7 +3919,7 @@ def text(
3917
3919
valign : Literal ["center" , "top" , "bottom" ] = "center" ,
3918
3920
) -> T :
3919
3921
"""
3920
- Create a 3D text
3922
+ Returns a 3D text.
3921
3923
3922
3924
:param txt: text to be rendered
3923
3925
:param fontsize: size of the font in model units
0 commit comments