Fix T41012: Error importing DXF.

This commit is contained in:
Bastien Montagne 2014-07-10 12:32:49 +02:00
parent 987fbf68b2
commit 74393fe915
Notes: blender-bot 2023-02-14 20:05:23 +01:00
Referenced by issue #41012, Error importing DXF
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ class CEllipse(CEntity):
for n in range(theCircleRes):
x = r*math.sin(n*w + phi0)
y = f*r*math.cos(n*w + phi0)
v = (center.x - a*x + b*y, center.y - a*y - b*x, center.z)
v = Vector((center.x - a*x + b*y, center.y - a*y - b*x, center.z))
points.append(v)
pn = len(points)