I need to "write" a text upon the cylinder's surface in the Z-axis direction.
I tried the following simple script:
***
c1 = circle radius:2.0
me = extrude amount:0.01
mpde = PathDeform path:c1
mpde.rotation = 90.0
mpde.axis = 1 -- y
mpde.Percent_along_path = 0.0
t1 = text font:"Arial" \
size:4.0 \
text:"ABCDEFGHIJKLMNOPQRSTUWXYZ" \
pos:[0.0,0.0,-1.0] \
wirecolor:green
addModifier t1 me
addModifier t1 mpde
move t1 [2.0 + 0.05,0.0,5.0]
***
The straight vertical component of the letters, like A,B,D,F,I,H ... (segment that starts from the bottom to the top) remains straight in the X-axis.
The "round" letters like C,O,Q..., take the right curvature along the X-axis.
What to do?
Thanks.
Amelia