GlistEngine
Loading...
Searching...
No Matches
gCone.h
Go to the documentation of this file.
1/*
2 * gCone.h
3 *
4 * Created on: 15 Mar 2023
5 * Author: Umutcan Turkmen
6 */
7
8#ifndef GRAPHICS_PRIMITIVES_GCONE_H_
9#define GRAPHICS_PRIMITIVES_GCONE_H_
10
11#include "gMesh.h"
12
13class gCone: public gMesh {
14public:
15 gCone(int r, int h, glm::vec2 shiftdistance, int segmentnum = 32, bool isFilled = true);
16 ~gCone() override;
17};
18
19
20
21#endif /* GRAPHICS_PRIMITIVES_GCONE_H_ */
Definition gCone.h:13
gCone(int r, int h, glm::vec2 shiftdistance, int segmentnum=32, bool isFilled=true)
~gCone() override
Definition gMesh.h:27
float r
Definition gColor.h:22