9 lines
129 B
Python
9 lines
129 B
Python
import area
|
|
|
|
p = area.Point(0,0)
|
|
|
|
m = area.Matrix([1,0,0,12, 0,1,0,0, 0,0,1,0, 0,0,0,1])
|
|
|
|
p.Transform(m)
|
|
|
|
print p.x, p.y |