Oxygen Engine
Modern C++ 3D Engine using OpenGL
Loading...
Searching...
No Matches
sphere.h
1#ifndef OE_SCENE_PRIMITIVE_SPHERE_H
2#define OE_SCENE_PRIMITIVE_SPHERE_H
3
4#include "../mesh.h"
5
7{
8 class Sphere : public Mesh
9 {
10 public:
11 Sphere(const unsigned int& segments = 64, const float& uv_scale = 1.0);
12 };
13}
14
15#endif
Definition mesh.h:333
Definition sphere.h:9
Standard mesh primitives (Cube, Plane, Teapot, etc...)
Definition cube.h:8