GlistEngine
Loading...
Searching...
No Matches
gTube.h
Go to the documentation of this file.
1/*
2 * gTube.h
3 *
4 * Created on: 14 Tem 2023
5 * Author: Aak-4
6 */
7
8#ifndef GRAPHICS_PRIMITIVES_GTUBE_H_
9#define GRAPHICS_PRIMITIVES_GTUBE_H_
10
11#include "gMesh.h"
12
13class gTube : public gMesh {
14public:
15 gTube(int topOuterRadius, int topInnerRadius, int bottomOuterRadius, int bottomInnerRadius, int h, glm::vec2 shiftdistance, int segmentnum, bool isFilled);
16 ~gTube() override;
17};
18
19#endif /* GRAPHICS_PRIMITIVES_GTUBE_H_ */
Definition gMesh.h:27
Definition gTube.h:13
~gTube() override
gTube(int topOuterRadius, int topInnerRadius, int bottomOuterRadius, int bottomInnerRadius, int h, glm::vec2 shiftdistance, int segmentnum, bool isFilled)