Dish.Dish

Dish()

Create a new dish instance with default radius(10) and default height(5)

public Dish()

See Also


Dish(double, double)

Create a new dish instance with specified radius and height

public Dish(double radius, double height)
ParameterTypeDescription
radiusDoubleThe radius of the dish
heightDoubleThe height of the dish

See Also


Dish(string, double, double, int, int)

Create a new dish instance with specified radius and height

public Dish(string name, double radius, double height, int widthSegments, int heightSegments)
ParameterTypeDescription
nameStringThe name of the dish
radiusDoubleThe radius of the dish
heightDoubleThe height of the dish
widthSegmentsInt32The width segment of the dish
heightSegmentsInt32The height segment of the dish

See Also