I hacked the lite cylinder primitive a bit ago to make something I called a "TwoRadiusCurvyCylinder". There is a link to the as file on this page:
http://moosemouse.com/away3dtest013.html You can use it to make a bucket shape if you set the interpType to "linear" and do something like this: var material:Material = new WireColorMaterial(0xFF0000); var radiusA:Number = 100; var radiusB:Number = 50; var height:Number = 180; var segmentsW:int = 15; var segmentsH:int = 10; var openEnded:Boolean = false; var yUp:Boolean = true; var interpType:String = "linear"; var bucket:Object3D = new TwoRadiusCurvyCylinder(material, radiusA, radiusB, height, segmentsW, segmentsH, openEnded, yUp, interpType); Hope that helps, Shawn On Jul 12, 6:56 pm, "[email protected]" <[email protected]> wrote: > Quick question is there a bucket shape? - A cone with the nose > removed, I wanted to make a basic cow in away3dlite and bucket shape > is useful especially for a head. > > Cheers ;j
