Dish constructor
Contents
[
Hide
]init
Create a new dish instance with default radius(10) and default height(5)
def __init__(self):
...
init
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
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