10 lines
135 B
Python
10 lines
135 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)
|