summaryrefslogtreecommitdiffstats
path: root/Vertex.h
diff options
context:
space:
mode:
Diffstat (limited to 'Vertex.h')
-rw-r--r--Vertex.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/Vertex.h b/Vertex.h
deleted file mode 100644
index 5f0db76..0000000
--- a/Vertex.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef VERTEX_H_
-#define VERTEX_H_
-
-class Vertex {
- private:
- float x, y;
-
- public:
- Vertex() {x = y = 0.0;}
- Vertex(float x, float y) {this->x = x; this->y = y;}
-
- float getX() const {return x;}
- void setX(float x) {this->x = x;}
-
- float getY() const {return y;}
- void setY(float y) {this->y = y;}
-
- void setLocation(float x, float y) {this->x = x; this->y = y;}
-
- float distanceSq(const Vertex &v) const;
- float distance(const Vertex &v) const;
-
- Vertex operator+(const Vertex &v) const;
- Vertex operator-(const Vertex &v) const;
- Vertex operator*(float f) const;
- Vertex operator/(float f) const;
-
- Vertex& operator+=(const Vertex &v);
- Vertex& operator-=(const Vertex &v);
- Vertex& operator*=(float f);
- Vertex& operator/=(float f);
-
-};
-
-#endif /*VERTEX_H_*/