aboutsummaryrefslogtreecommitdiff
path: root/AutopyExtended/Curve/test1.py
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2020-08-22 16:02:17 +0200
committerLeonard Kugis <leonard@kug.is>2020-08-22 16:02:17 +0200
commitf43f909bf20dafb2c10520815282046cffe495f2 (patch)
tree5be52b3a048c0b2755a670de4269460353bc9760 /AutopyExtended/Curve/test1.py
parent3b47fad88c8b714c83c1c90cf6726d85688b300f (diff)
Refactoring, Bezier
Refactored module layout. Added missing dependencies to setup. Added time scaling to curves.
Diffstat (limited to 'AutopyExtended/Curve/test1.py')
-rw-r--r--AutopyExtended/Curve/test1.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/AutopyExtended/Curve/test1.py b/AutopyExtended/Curve/test1.py
deleted file mode 100644
index 05f56d8..0000000
--- a/AutopyExtended/Curve/test1.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import matplotlib.pyplot as plot
-from CurveBezier import CurveBezier
-
-curve = CurveBezier([(0,0),(53,178),(5,87),(140,75),(48,647),(37,49)],1000)
-points = [curve.point(t) for t in range(0,1000)]
-x = [p[0] for p in points]
-y = [p[1] for p in points]
-plot.scatter(x,y)
-plot.show()