summaryrefslogtreecommitdiffstats
path: root/src/Data/Vertex.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-05-18 15:22:02 +0200
committerneoraider <devnull@localhost>2008-05-18 15:22:02 +0200
commit094c72221ea15615b4bcdc31a4acbb4e5c67817a (patch)
tree028374bdd94d789c23627af20c4eb385cb8186c9 /src/Data/Vertex.h
parent36d892d1f0f0a919e70f81abddaeb568f1f7625c (diff)
downloadzoomedit-094c72221ea15615b4bcdc31a4acbb4e5c67817a.tar
zoomedit-094c72221ea15615b4bcdc31a4acbb4e5c67817a.zip
zoomedit:
* Removed unused vector maths * Added missing const to set*-methods in Triangle
Diffstat (limited to 'src/Data/Vertex.h')
-rw-r--r--src/Data/Vertex.h13
1 files changed, 1 insertions, 12 deletions
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);
};
}