From 094c72221ea15615b4bcdc31a4acbb4e5c67817a Mon Sep 17 00:00:00 2001 From: neoraider Date: Sun, 18 May 2008 13:22:02 +0000 Subject: zoomedit: * Removed unused vector maths * Added missing const to set*-methods in Triangle --- src/Data/Vertex.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src/Data/Vertex.h') diff --git a/src/Data/Vertex.h b/src/Data/Vertex.h index a9660c4..423e0d2 100644 --- a/src/Data/Vertex.h +++ b/src/Data/Vertex.h @@ -20,7 +20,7 @@ #ifndef ZOOMEDIT_DATA_VERTEX_H_ #define ZOOMEDIT_DATA_VERTEX_H_ -#include "Vector.h" +//#include "Vector.h" namespace ZoomEdit { namespace Data { @@ -41,17 +41,6 @@ class Vertex { float getZ() const {return z;} void setZ(float z0) {z = z0;} - - float distanceSq(const Vertex &v) const; - float distance(const Vertex &v) const; - - Vector operator-(const Vertex &v) const; - - Vertex operator+(const Vector &v) const; - Vertex operator-(const Vector &v) const; - - Vertex& operator+=(const Vector &v); - Vertex& operator-=(const Vector &v); }; } -- cgit v1.2.3