Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/Vector.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/Vector.py')
-rw-r--r--src/api/Vector.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/api/Vector.py b/src/api/Vector.py
index 73a3055..ea10dcf 100644
--- a/src/api/Vector.py
+++ b/src/api/Vector.py
@@ -6,12 +6,9 @@ from math import sqrt
class CVector(object):
- x = 0.0
- y = 0.0
-
EPSILON = 0.000001
- def __init__(self, aX = 0.0, aY = 0.0):
+ def __init__(self, aX = 0, aY = 0):
self.x = aX
self.y = aY