class ConeShape
Defined in:
The C4Shapes.h
ConeShape
class represents a cone shape node in a world.
Definition
class ConeShape : public Shape
Constructor
ConeShape(const Vector2D& size, float height);
Parameters
size |
The size of the cone base. |
height |
The height of the cone. |
Description
The ConeShape
class represents a shape node that is shaped like a cone whose dimensions are specified by the size
and height
parameters.
Base Classes
Shape |
A cone shape is a specific type of shape. |
See Also