Hi to all!
please explain me why WireframePlane orientation doesn’t changes by applying rotation…
for example:
var wire:WireframePlane=new WireframePlane(40000, 40000, 40, 40, 0x808080);
trace(wire.orientation);
wire.rotationZ=90;
trace(wire.orientation);
the first trace output is: ‘YZ’ (ok)
but why after applying wire.rotationZ=90;
the second trace output still ‘YZ’ (i expect ‘XZ’)