Results 1 to 5 of 5

Thread: Help with creating a new Complex Linetype

  1. #1
    100 Club
    Join Date
    2005-05
    Posts
    102
    Login to Give a bone
    0

    Question Help with creating a new Complex Linetype

    Hello, I am trying to create a certain linetype,

    - - ST - - . - - ST - - . and on

    can someone please help me with it. I opened acad.lin file and tried to modify it. i was able to modify it, but did not get the result that i was looking for.

    here is what did,

    *CONDUIT_IN_THE_STREET,Conduit in the Street .-- ST --.-- ST -- .-- ST --.
    A,.3,-.2,0,.3,-.2,0,["ST",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.25,0,-.125

    i know this is wrong, but please try to assist me with it. I don't understand the following line, A,.3,-.2,0,.3,-.2,0,["ST",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.25,0,-.125

    Thank you

  2. #2
    The Silent Type Mike.Perry's Avatar
    Join Date
    2000-11
    Posts
    13,656
    Login to Give a bone
    0

    Default Re: Help with creating a new Complex Linetype

    Hi

    Please note I have *moved* this thread from the Coffee Without CAD forum to this one, as I feel this particular forum is a more appropriate place for such a topic.

    Thanks, Mike

    Forum Moderator
    Last edited by Mike.Perry; 2006-03-07 at 11:49 PM. Reason: Correct link.

  3. #3
    The Silent Type Mike.Perry's Avatar
    Join Date
    2000-11
    Posts
    13,656
    Login to Give a bone
    0

    Default Re: Help with creating a new Complex Linetype

    Hi

    See of any of the information found in the following post helps...

    RE: Custom Linetype

    +

    The following explains the code that makes up a ( Complex ) Linetype...

    AutoCAD Online Help File [F1] -> Contents tab -> Customization Guide -> Custom Linetypes

    Have a good one, Mike

  4. #4
    AUGI Addict .T.'s Avatar
    Join Date
    2000-12
    Location
    Lost
    Posts
    1,473
    Login to Give a bone
    0

    Default Re: Help with creating a new Complex Linetype

    Hi VBOYAJI,

    Basically, positive numbers are pen down, negative numbers are pen up, and 0 is a dot. You've probably already figured out the text portion, but "ST" is what is displayed, STANDARD is the style to use, S is the scale, R is rotation, X is the offset along the line and Y is the offset in Y.

    Is your intent really to start with a dot, as your description defined in the definition suggests? If so, try this:

    Code:
    *CONDUIT_IN_THE_STREET,Conduit in the Street .-- ST --.-- ST --.-- ST --.
    A,0,-.2,.3,-.2,["ST",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.2,.3,-.2


    This works, but looks kind of funny to me ~shrug~, but at least it doesn't have symmetry issues. It does, however have issues with the spacing between the end dots and first dash.

    If your intent is to start with a dash, per your description in your post, this is as close as I could get with 2 dashes and one dot:

    Code:
    *CONDUIT_IN_THE_STREET2,Conduit in the Street --ST--.--ST--.--ST--
    A,.3,-.2,0,-.2,.3,-.2,["ST",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.2


    It has symmetry issues between the ends, as Autocad ignores all but the first dash for making sure there is a dash at each end (that's what the A is for in the definition, and it's required). I'm not sure if this matters to you or not.

    But, if three dashes and two dots between ST are ok, try this

    Code:
    *CONDUIT_IN_THE_STREET3,Conduit in the Street --ST--.--.--ST--.--.--ST--
    A,.3,-.2,0,-.2,.3,-.2,["ST",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.2,.3,-.2,0,-.2


    IMHO this looks better, but the dashes at the ends can get pretty long. At least it has symmetry.
    I hope this helps,




  5. #5
    100 Club
    Join Date
    2005-05
    Posts
    102
    Login to Give a bone
    0

    Default Re: Help with creating a new Complex Linetype

    Thank you very much, it was very helpful, I tried it and works good

Similar Threads

  1. Complex Linetype
    By Wish List System in forum Revit Architecture - Wish List
    Replies: 0
    Last Post: 2012-06-13, 03:48 PM
  2. 2010: making a complex new Linetype
    By McLean in forum AutoCAD General
    Replies: 1
    Last Post: 2012-04-16, 02:55 PM
  3. COMPLEX LINETYPE
    By mahesh_neelam in forum AutoCAD General
    Replies: 3
    Last Post: 2008-11-20, 06:23 AM
  4. Complex Linetype Question
    By dburk_2 in forum AutoCAD General
    Replies: 2
    Last Post: 2008-09-06, 09:49 PM
  5. Complex Linetype Request
    By cynthia.deckman in forum AutoCAD General
    Replies: 1
    Last Post: 2007-10-30, 02:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •