<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Different drawing depending on scale in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205216#M17007</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Well, seems I am always having this problem, anytime I try to use an object downloaded from the internet, or from a manufacturer.&lt;BR /&gt;
&lt;BR /&gt;
The drawing is not scale sensitive. It doesn't matter if its scale 1:400 or 1:20, the object appearance is exactly the same.&lt;BR /&gt;
&lt;BR /&gt;
Is there a simple way to modify the object and provide an extra drawing for different scale?&lt;BR /&gt;
&lt;BR /&gt;
Thank you!&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Sat, 16 Apr 2011 10:44:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-04-16T10:44:29Z</dc:date>
    <item>
      <title>Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205216#M17007</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Well, seems I am always having this problem, anytime I try to use an object downloaded from the internet, or from a manufacturer.&lt;BR /&gt;
&lt;BR /&gt;
The drawing is not scale sensitive. It doesn't matter if its scale 1:400 or 1:20, the object appearance is exactly the same.&lt;BR /&gt;
&lt;BR /&gt;
Is there a simple way to modify the object and provide an extra drawing for different scale?&lt;BR /&gt;
&lt;BR /&gt;
Thank you!&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 16 Apr 2011 10:44:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205216#M17007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-16T10:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205217#M17008</link>
      <description>There aren't simple way. You have to modify the 2D script for diffrent scale.</description>
      <pubDate>Sun, 17 Apr 2011 07:24:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205217#M17008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-17T07:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205218#M17009</link>
      <description>Seems that I will place objects in one layer, and show in plans 1:50 and 1:20.&lt;BR /&gt;
&lt;BR /&gt;
For plans in 1:300 I will have to create a different layer, and only draw in 2D.&lt;BR /&gt;
&lt;BR /&gt;
Well, more elements to maintain, in case there are changes to the project.&lt;BR /&gt;
&lt;BR /&gt;
If somebody can suggest me a different approach... Thank you!</description>
      <pubDate>Sun, 17 Apr 2011 08:19:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205218#M17009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-17T08:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205219#M17010</link>
      <description>&lt;BLOCKQUOTE&gt;ila2 wrote:&lt;BR /&gt;There aren't simple way. You have to modify the 2D script for diffrent scale.&lt;/BLOCKQUOTE&gt;

Just asking again... Is there any tutorial where I can learn how to add different views to an existing object?&lt;BR /&gt;
&lt;BR /&gt;
I really appreciate your assistance.</description>
      <pubDate>Sat, 13 Aug 2011 14:12:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205219#M17010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-13T14:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205220#M17011</link>
      <description>If the parts are not highly parametric (if they have a fixed size in plan) modifying the symbol display to be scale sensitive is not that hard.&lt;BR /&gt;
&lt;BR /&gt;
The 2D symbol uses 16 "fragments" which function like layers. You can draw the symbols you want on different fragments for each scale and then write a simple script to pick the symbol to use according to the current scale.&lt;BR /&gt;
&lt;BR /&gt;
A very simple version would be:&lt;BR /&gt;

&lt;PRE&gt;IF GLOB_SCALE &amp;gt; 50 THEN
    Fragment2 1, 0
ELSE
    Fragment 2, 0
ENDIF&lt;/PRE&gt;

A little more complex:&lt;BR /&gt;
&lt;BR /&gt;

&lt;PRE&gt;IF GLOB_SCALE &amp;gt;= 100 THEN
    Fragment2 1, 0
ENDIF

IF GLOB_SCALE &amp;lt; 100 AND GLOB_SCALE &amp;gt;= 50 THEN
    Fragment2 2, 0
ENDIF

IF GLOB_SCALE &amp;lt; 50 THEN
    Fragment2 3, 0
ENDIF&lt;/PRE&gt;

&lt;BR /&gt;
The first number after Fragment2 is the number of the fragment you want to show at the given scale. The second number determines whether to use the line and pen settings of the fragment (value of 0) or to override with settings from the script (value of 1).</description>
      <pubDate>Sat, 13 Aug 2011 15:10:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205220#M17011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-13T15:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Different drawing depending on scale</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205221#M17012</link>
      <description>Thank you Matthew for this great and useful explanation. My experience with GDL is null, but I will try to import a 3DS model and add some modifications for my school project.&lt;BR /&gt;
&lt;BR /&gt;
Thank you!!</description>
      <pubDate>Sun, 14 Aug 2011 19:15:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Different-drawing-depending-on-scale/m-p/205221#M17012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-14T19:15:15Z</dc:date>
    </item>
  </channel>
</rss>

