Plane constructor
init
Initializes a new instance of the Plane with default size 1x1.
def __init__(self):
...
init
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
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