Ive been trying without much success to bend/warp/deform a textfield3d
text object along the x axis to give the appearance of the text
curving in an arc similar to the envelope distort in programs such as
Photoshop/Illustrator.

Ive converted the text object to a mesh object and then tried altering
the vertices using :

mesh = new Mesh(tf3D as Mesh);
                for each (var vertex : Vertex in tf3D.vertices)
                        vertex.x = 50*Math.sin(vertex.z/50);

I can only get this to deform the text along the z axis though. When i
use X or Y it doesnt work. Ive also tried the as3mod bend class but
can only make it bend the text along the z or y and not bend it along
its length.

Any help will be greatly appreciated.

Many Thanks

Reply via email to