Plane constructor
__init__(self)
Initializes a new instance of the Plane with default size 1x1.
def __init__(self):
...
__init__(self, length, width)
Initializes a new instance of the Plane.
def __init__(self, length, width):
...
| Parameter | Type | Description |
|---|---|---|
| length | float | Length of the plane. |
| width | float | Width of the plane. |
__init__(self, name, length, width, length_segments, width_segments)
Initializes a new instance of the Plane.
def __init__(self, name, length, width, length_segments, width_segments):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | Name. |
| length | float | Length of the plane. |
| width | float | Width of the plane. |
| length_segments | int | Length segments. |
| width_segments | int | Width segments. |
See Also
- module
aspose.threed.entities - class
Plane