Thread: Strange Euler
View Single Post
  #1  
Old 02-02-2007, 01:55 PM
Jerry Jerry is offline
Member
 
Join Date: Jun 2004
Posts: 105
Strange Euler

When I run this:

duck = viz.add('duck.wrl')
print duck.get(viz.EULER)
duck.scale(1,.5,1)
print duck.get(viz.EULER)

I get this:

[0.0, 0.0, 0.0]
[0.0, 0.0, -59.999996185302734]

Why does scaling affect the Euler angle?
Reply With Quote