42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
from Base.Metadata import export
|
|
from GeometrySurface import GeometrySurface
|
|
|
|
|
|
@export(
|
|
PythonName="Part.Plane",
|
|
Twin="GeomPlane",
|
|
TwinPointer="GeomPlane",
|
|
Include="Mod/Part/App/Geometry.h",
|
|
FatherInclude="Mod/Part/App/GeometrySurfacePy.h",
|
|
Constructor=True,
|
|
)
|
|
class Plane(GeometrySurface):
|
|
"""
|
|
Describes an infinite plane
|
|
To create a plane there are several ways:
|
|
Part.Plane()
|
|
Creates a default plane with base (0,0,0) and normal (0,0,1)
|
|
|
|
Part.Plane(Plane)
|
|
Creates a copy of the given plane
|
|
|
|
Part.Plane(Plane, Distance)
|
|
Creates a plane parallel to given plane at a certain distance
|
|
|
|
Part.Plane(Location,Normal)
|
|
Creates a plane with a given location and normal
|
|
|
|
Part.Plane(Point1,Point2,Point3)
|
|
Creates a plane defined by three non-linear points
|
|
|
|
Part.Plane(A,B,C,D)
|
|
Creates a plane from its cartesian equation
|
|
Ax+By+Cz+D=0
|
|
"""
|
|
|
|
Position: object = ...
|
|
"""Returns the position point of this plane."""
|
|
|
|
Axis: object = ...
|
|
"""Returns the axis of this plane."""
|