From 356efaf89afdad141b313767e1a2b89de3c08d0a Mon Sep 17 00:00:00 2001 From: neoraider Date: Sun, 6 Apr 2008 13:29:03 +0000 Subject: zoomedit: Recreated ZoomEdit based on Glademm. --- Vertex3d.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Vertex3d.h (limited to 'Vertex3d.h') diff --git a/Vertex3d.h b/Vertex3d.h deleted file mode 100644 index faad420..0000000 --- a/Vertex3d.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef VERTEX3D_H_ -#define VERTEX3D_H_ - -class Vertex3d { - private: - float x, y, z; - - public: - Vertex3d() {x = y = z = 0.0;} - Vertex3d(float x, float y, float z) {this->x = x; this->y = y; this->z = z;} - - float getX() const {return x;} - void setX(float x) {this->x = x;} - - float getY() const {return y;} - void setY(float y) {this->y = y;} - - float getZ() const {return z;} - void setZ(float z) {this->z = z;} - - void setLocation(float x, float y, float z) {this->x = x; this->y = y; this->z = z;} - - float distanceSq(const Vertex3d &v) const; - float distance(const Vertex3d &v) const; - - Vertex3d operator+(const Vertex3d &v) const; - Vertex3d operator-(const Vertex3d &v) const; - - Vertex3d& operator+=(const Vertex3d &v); - Vertex3d& operator-=(const Vertex3d &v); -}; - -#endif /*VERTEX3D_H_*/ -- cgit v1.2.3