Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2014-02-24 03:42:27 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2014-02-24 03:42:27 (GMT)
commit51571ece0306e588ef00cf99ba2fcdcda358e121 (patch)
tree4443fe402b1a5dec50c53026070b184287ecff65 /src/api
parentad563fc9068e10cd8ddc7065ebb9cf78d3639b2b (diff)
fix number of partida in select message
Diffstat (limited to 'src/api')
-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