Hello everyone,
I’m using LineSegment like this:
var sgm:SegmentSet=new SegmentSet()
view.scene.addChild(sgm);
sgm.addSegment(new LineSegment(new Vector3D(0, 0, 0), new Vector3D(100, 0, 0),0x000000,0xFFFFFF,10));
but when I move the camera away from the SegmentSet ( in any direction) the segments seem to rotate to face the camera and keep their width (they get wider and shorter as I go further from them with the camera). I’m kind of new to away3d… so I want to know if this is normal behavior or I am doing something wrong ? I use the latest .swc(away3d-core-fp11_4_1_0_Alpha.swc) in my project.
If this is normal behavior for LineSegment how would I go about tracing a line on top of a plane? - I’m trying to leave some line marks on top of a plane.
Thanks