Currently we are placing more than 10000’s of point in away 3d using mesh.
we used mesh and added segment to achive this.
Is it possible to have every segment with different material(color)I applied material for segment its not reflecting in the scene.
var seg:Segment = new Segment(
new Vertex(30*i,30*j,20*z),
new Vertex(30*i,30*j+1,20*z),
new ColorMaterial(0xCC0000)
);
and also i want to know is it possible to add mouse click for the vertex.
Thanks