Skip to content

Commit

Permalink
Draft: fixed leftovers from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jan 18, 2015
1 parent 044c1c0 commit 767d7b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Mod/Draft/importDXF.py
Expand Up @@ -1457,10 +1457,10 @@ def getArcData(edge):
p2 = edge.Vertexes[-1].Point
v1 = p1.sub(ce)
v2 = p2.sub(ce)
print v1.cross(v2)
print edge.Curve.Axis
print p1
print p2
#print v1.cross(v2)
#print edge.Curve.Axis
#print p1
#print p2
# we can use Z check since arcs getting here will ALWAYS be in XY plane
# Z can be 0 if the arc is 180 deg
if (v1.cross(v2).z >= 0) or (edge.Curve.Axis.z > 0):
Expand Down

0 comments on commit 767d7b4

Please sign in to comment.