@@ -503,15 +503,15 @@ def workplane(
503
503
"""
504
504
Creates a new 2D workplane, located relative to the first face on the stack.
505
505
506
- :param offset: offset for the work plane in the Z direction. Default
507
- :param invert: invert the Z direction from that of the face.
506
+ :param offset: offset for the workplane in it's normal direction . Default
507
+ :param invert: invert the normal direction from that of the face.
508
508
:param centerOption: how local origin of workplane is determined.
509
509
:param origin: origin for plane center, requires 'ProjectedOrigin' centerOption.
510
510
:type offset: float or None=0.0
511
511
:type invert: boolean or None=False
512
512
:type centerOption: string or None='ProjectedOrigin'
513
513
:type origin: Vector or None
514
- :rtype: Workplane object ( which is a subclass of CQ )
514
+ :rtype: Workplane object
515
515
516
516
The first element on the stack must be a face, a set of
517
517
co-planar faces or a vertex. If a vertex, then the parent
@@ -527,7 +527,7 @@ def workplane(
527
527
face(s) or vertex (vertices). 'ProjectedOrigin' uses by default the current origin
528
528
or the optional origin parameter (if specified) and projects it onto the plane
529
529
defined by the selected face(s).
530
- * The Z direction will be normal to the plane of the face,computed
530
+ * The Z direction will be the normal of the face,computed
531
531
at the center point.
532
532
* The X direction will be parallel to the x-y plane. If the workplane is parallel to
533
533
the global x-y plane, the x direction of the workplane will co-incide with the
@@ -537,14 +537,6 @@ def workplane(
537
537
of the face ( IE, offset=0). Occasionally, it is useful to define a face offset from
538
538
an existing surface, and even more rarely to define a workplane based on a face that is
539
539
not planar.
540
-
541
- To create a workplane without first having a face, use the Workplane() method.
542
-
543
- Future Enhancements:
544
- * Allow creating workplane from planar wires
545
- * Allow creating workplane based on an arbitrary point on a face, not just the center.
546
- For now you can work around by creating a workplane and then offsetting the center
547
- afterwards.
548
540
"""
549
541
550
542
def _isCoPlanar (f0 , f1 ):
0 commit comments