@@ -2942,9 +2942,9 @@ def twistExtrude(
2942
2942
) -> T :
2943
2943
"""
2944
2944
Extrudes a wire in the direction normal to the plane, but also twists by the specified
2945
- angle over the length of the extrusion
2945
+ angle over the length of the extrusion.
2946
2946
2947
- The center point of the rotation will be the center of the workplane
2947
+ The center point of the rotation will be the center of the workplane.
2948
2948
2949
2949
See extrude for more details, since this method is the same except for the the addition
2950
2950
of the angle. In fact, if angle=0, the result is the same as a linear extrude.
@@ -3312,7 +3312,7 @@ def cut(
3312
3312
self : T , toCut : Union ["Workplane" , Solid , Compound ], clean : bool = True
3313
3313
) -> T :
3314
3314
"""
3315
- Cuts the provided solid from the current solid, IE, perform a solid subtraction
3315
+ Cuts the provided solid from the current solid, IE, perform a solid subtraction.
3316
3316
3317
3317
:param toCut: object to cut
3318
3318
:type toCut: a solid object, or a CQ object having a solid,
@@ -3876,7 +3876,7 @@ def sphere(
3876
3876
clean : bool = True ,
3877
3877
) -> T :
3878
3878
"""
3879
- Returns a 3D sphere with the specified radius for each point on the stack
3879
+ Returns a 3D sphere with the specified radius for each point on the stack.
3880
3880
3881
3881
:param radius: The radius of the sphere
3882
3882
:type radius: float > 0
@@ -4013,6 +4013,8 @@ def wedge(
4013
4013
clean : bool = True ,
4014
4014
) -> T :
4015
4015
"""
4016
+ Returns a 3D wedge with the specified dimensions for each point on the stack.
4017
+
4016
4018
:param dx: Distance along the X axis
4017
4019
:param dy: Distance along the Y axis
4018
4020
:param dz: Distance along the Z axis
@@ -4114,7 +4116,7 @@ def text(
4114
4116
valign : Literal ["center" , "top" , "bottom" ] = "center" ,
4115
4117
) -> T :
4116
4118
"""
4117
- Create a 3D text
4119
+ Returns a 3D text.
4118
4120
4119
4121
:param txt: text to be rendered
4120
4122
:param fontsize: size of the font in model units
0 commit comments