We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76cffd3 commit 558d5baCopy full SHA for 558d5ba
__init__.py
@@ -376,13 +376,13 @@ def curves_export(self, context):
376
if curvetype == "NURBS" or "POLY":
377
if len(spline.points) > 0:
378
for bezier_point in spline.points.values():
379
- co = ob.matrix_world @ bezier_point.co
+ co = bezier_point.co @ ob.matrix_world
380
file.write("[%.3f, %.3f, %.3f], " %
381
(co.x, co.y, co.z))
382
if curvetype == "BEZIER":
383
if len(spline.bezier_points) > 0:
384
for bezier_point in spline.bezier_points.values():
385
386
387
388
file.write("]\n")
0 commit comments