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