mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
20 lines
281 B
C++
Executable File
20 lines
281 B
C++
Executable File
#ifndef QUAD_H
|
|
#define QUAD_H
|
|
|
|
#include "vector.h"
|
|
#include "mesh.h"
|
|
|
|
namespace vb01{
|
|
class Quad : public Mesh{
|
|
public:
|
|
Quad(Vector3, bool = true);
|
|
void setSize(Vector3);
|
|
inline Vector3 getSize(){return size;}
|
|
private:
|
|
Vector3 size;
|
|
bool spatial;
|
|
};
|
|
}
|
|
|
|
#endif
|