hey ... i`m trying something with the lathe extrusion class.
i want to create a rounded wall element. the round part should make a
90° turn, so i decided to set rotations to 0.25 but it creates a whole
360° wall. Where is the problem? Do i missunderstand the rotations
property? How would you create the wall part?
Another problem is that the position of the wall seems not to be
right. especially the y value of the path`s are strange. maybe
somebody can take a look at the following code and correct it. Would
be nice. Thanks = )
var apoints = new Array();
apoints.push(new Number3D(300, 100, 300));
apoints.push(new Number3D(300, 200, 300));
apoints.push(new Number3D(300, 300, 300));
var lathe:LatheExtrusion = new LatheExtrusion(apoints,
{ material:spanplatteMaterial, axis:"y", rotations:0.25, subdivision:
15, coverall:true } );
myScene.addChild(lathe);