From acb1721e94a49a4941bb11dfc2f832c3848aa204 Mon Sep 17 00:00:00 2001 From: neoraider Date: Fri, 8 Feb 2008 21:21:01 +0000 Subject: zoomedit: Implemented Rotate tool; added simple gates. --- Vertex.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Vertex.h') diff --git a/Vertex.h b/Vertex.h index c367bb2..5f0db76 100644 --- a/Vertex.h +++ b/Vertex.h @@ -22,9 +22,14 @@ class Vertex { 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_*/ -- cgit v1.2.3