Drafting Techniques
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi, need to create a linetype that at a specified interval (1.0), a specified shape (filled circle) with a specified size (0.15) is placed. I have found several forums etc but the explanaiations are difficult to understand. All this in metric units.
I have tried to use a simple dots linetype and while that works the colour used & required keeps fading out.
many thanks
Aaron
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
You will be limited by the circle shape so it might be best to keep it simple; I would use a simple line then use concentric circles to fill create the filled shape. This approach is obviously dependent on the lineweight but you could tweak the size of the circles to make sure your filled circle was the correct size, or as near as possible, when plotted.
*DashCircle,Dash Circle ----O----O----
A,0.5,[CIRC1,ltypeshp.shx,s=0.075,r=0,x=-0.075,y=0
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Given the specificity of size, you might want to explore the MEASURE command, and not limit yourself to linetype definitions as the answer. advantages either way, so it's up to you.
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Could you point me in the direction of a document and reference so I can have a look at exactly what you need? I am a highway designer in the UK so I have plently experience creating linetypes and dynamic blocks to reflect the diagrams in The Traffic Signs Regulations and General Directions.
Because of the way AutoCAD does line types you will undoubtedly have to make some accommodation for that. When working with my linetypes I have to adjust the length of the polyline to get them to display properly; for a line marking made up of a 4m line and a 2m gap the length would have to be 4,10,16 or 22m and so on. It requires a little extra work but it the effort is worth it.
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Gil,
love your linetype. One question. How do you alter the code to remove the solid line so only the dots are visible?
*DashCircle,Dash Circle ----O----O----
A,0.5,[CIRC1,ltypeshp.shx,s=0.075,r=0,x=-0.075,y=0
Re: how to?? complex linetype
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Aaron,
I knew you were going to ask that and the answer is not easily. AutoCAD's linetypes are based on the principle that lines will always start and end with a dash or dot so you can't simply change the dashes to gaps.
The best I could come with was:
*FilledCircle,Filled Circle O O O
A,0,[CIRC1,ltypeshp.shx,s=0.075,r=0,x=-0.075,y=0],
This gives you the circles without the dashes however as previously mentioned because AutoCAD linetypes must finish with a dot or dash so any lines drawn with this linetype will end with a gap and a dot.
The online documentation contains some good information on custom linetypes, it would be worth a read through so you can understand the linetype definition and then tweak it as required.
