]> git.tdb.fi Git - r2c2.git/blob - source/3d/object.h
Rename Point to Vector
[r2c2.git] / source / 3d / object.h
1 /* $Id$
2
3 This file is part of R²C²
4 Copyright © 2010  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef R2C2_3D_OBJECT_H_
9 #define R2C2_3D_OBJECT_H_
10
11 #include "libr2c2/geometry.h"
12
13 namespace R2C2 {
14
15 class Object3D
16 {
17 protected:
18         Object3D() { }
19 public:
20         virtual ~Object3D() { }
21
22         virtual Vector get_node() const = 0;
23         virtual bool is_visible() const = 0;
24 };
25
26 } // namespace R2C2
27
28 #endif