Dish constructor
Contents
[
Hide
]__init__(self)
Create a new dish instance with default radius(10) and default height(5)
def __init__(self):
...
__init__(self, radius, height)
Create a new dish instance with specified radius and height
def __init__(self, radius, height):
...
| Parameter | Type | Description |
|---|---|---|
| radius | float | The radius of the dish |
| height | float | The height of the dish |
__init__(self, name, radius, height, width_segments, height_segments)
Create a new dish instance with specified radius and height
def __init__(self, name, radius, height, width_segments, height_segments):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the dish |
| radius | float | The radius of the dish |
| height | float | The height of the dish |
| width_segments | int | The width segment of the dish |
| height_segments | int | The height segment of the dish |
See Also
- module
aspose.threed.entities - class
Dish