Best way to make solid wireframe material with Away3d?

1.3k Views Asked by At

Can't find any good example of solid wireframe material in Away3d. Maybe I am using wrong tool?

1

There are 1 best solutions below

0
On

There is a set of Wireframe primitives, like WireframeSphere and WireframeCube. Just define them and add to the scene:

var primitive = new WireframeCube(400,800,400,0xFFFFFF,1);
primitive.x = 1000;
scene.addChild(primitive);

But I believe you want to apply wireframe to non primitive object. In that case - I'm also looking for the answer...

EDIT:

I have found some workaround called WireframeMapGenerator. It's not true wire frame material but at least it works: http://away3d.com/forum/viewthread/779/#2597