Initial commit

This commit is contained in:
Wenzel Jakob
2015-07-05 20:05:44 +02:00
commit 38bd71134a
40 changed files with 3827 additions and 0 deletions

22
example/example3.py Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python3
import sys
sys.path.append('.')
from example import Vector2, Vector
v1 = Vector2(1, 2)
v2 = Vector(3, -1)
print("v1 = " + str(v1))
print("v2 = " + str(v2))
print("v1+v2 = " + str(v1+v2))
print("v1-v2 = " + str(v1-v2))
print("v1-8 = " + str(v1-8))
print("v1+8 = " + str(v1+8))
print("v1*8 = " + str(v1*8))
print("v1/8 = " + str(v1/8))
v1 += v2
v1 *= 2
print("(v1+v2)*2 = " + str(v1))