summaryrefslogtreecommitdiffstats
path: root/src/Data/Vertex.h
diff options
context:
space:
mode:
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);
};
}