Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

I recently made a custom line type, 1

Status
Not open for further replies.

R12NV

Civil/Environmental
Joined
Sep 4, 2002
Messages
54
Location
AU
I recently made a custom line type, but i have found that the text in it does'nt curve that well.

*63MM_GAS_LINE,63Gas LINE ----63MM GAS LINE----63MM GAS LINE----63MM GAS LINE----
A,.5,-.2,["63MM GAS",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-1.2

It works fine with straight lines and large radi curves but the text kicks out straight in the tighter curves. Is there anyway to fix the problem???

cheers,
 
Try putting pieces of line between your individual words.
If you use polylines then setting plinegen may also help.
 
Dear R12NV,

Piece of cake,
Change the code as follow. I would like to remind you it is better to insert the text definition part in seperate lines because the permitted expression length in text file is limitted.

*63MM_GAS_LINE,63Gas LINE ----63MM GAS LINE----63MM GAS LINE----63MM GAS LINE----
A,.5,-.2,
["6",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.1,
["3",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.1,
["M",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.1,
["M",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.3,
["G",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.1,
["A",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.1,
["S",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.2

Load the above linetype and everything will be OK.
:)
Farzad
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top