Implements Pyramid control.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CPyramid :public virtual IPyramid, public C3DControl
{
protected:
void FreeResources(COpenGL *graphics) override;
void Render(COpenGL *graphics, IRenderer *renderer, ICamera *camera) override;
public:
// IPyramid getters
float getPyramidWidth() override;
float getPyramidDepth() override;
float getPyramidHeight() override;
int getHeightSegments() override;
// IPyramid setters
bool setPyramidWidth(const float value) override;
bool setPyramidDepth(const float value) override;
bool setPyramidHeight(const float value) override;
bool setPyramidSize(const float width, const float depth, const float height) override;
bool setHeightSegments(const int value) override;
CPyramid();
CPyramid(IControl *parent);
};
Namespace: | nitisa::opengl |
Include: | OpengL/Controls/Pyramid/Pyramid.h |