Files
create/src/Mod/CAM/libarea/kurve/test.py
2025-10-31 17:00:32 -04:00

12 lines
176 B
Python

# SPDX-License-Identifier: BSD-3-Clause
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)