<?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 Re: Text That Doesn't Scale? in Modeling</title>
    <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2667#M1024</link>
    <description>You could use the "Text 3D.GSM" Object.</description>
    <pubDate>Tue, 18 Nov 2003 01:08:39 GMT</pubDate>
    <dc:creator>David Larrew</dc:creator>
    <dc:date>2003-11-18T01:08:39Z</dc:date>
    <item>
      <title>Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2665#M1022</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I have some signs that I am detailing that have text on them, but when I set the scale for dimensioning, the text size changes.  How can I make that text ignore the scale and just stay the same size?&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 17 Nov 2003 23:31:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2665#M1022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-11-17T23:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2666#M1023</link>
      <description>You could do the text in Word, then highlight it, copy, and do a "Paste as a Single Figure" into AC.</description>
      <pubDate>Tue, 18 Nov 2003 00:49:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2666#M1023</guid>
      <dc:creator>Richard Morrison</dc:creator>
      <dc:date>2003-11-18T00:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2667#M1024</link>
      <description>You could use the "Text 3D.GSM" Object.</description>
      <pubDate>Tue, 18 Nov 2003 01:08:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2667#M1024</guid>
      <dc:creator>David Larrew</dc:creator>
      <dc:date>2003-11-18T01:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2668#M1025</link>
      <description>&lt;BLOCKQUOTE&gt;David wrote:&lt;BR /&gt;You could use the "Text 3D.GSM" Object.&lt;/BLOCKQUOTE&gt;

If it has to be done in 2D only, a GDL object with 2D script only would be better : Text 3D will project an extrusion of a font : this can take a long time.&lt;BR /&gt;
&lt;BR /&gt;
As text size are given in plotted mm, the 2D script should resize the text size according to the scale of the plan.</description>
      <pubDate>Tue, 18 Nov 2003 07:37:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2668#M1025</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-11-18T07:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2669#M1026</link>
      <description>jay&lt;BR /&gt;
&lt;BR /&gt;
we are using a stair numbering string 2D GDL object that doesn't scale the text for 1:100 or 1:50 drawings. ie the text maintains its proportional relationship with that around it.&lt;BR /&gt;
&lt;BR /&gt;
there is a piece of the GDL script that goes:&lt;BR /&gt;

&lt;PRE&gt;if GLOB_SCALE &amp;gt;50 then
	textsize=Txt_Sze*500
	else textsize=Txt_Sze*1000&lt;/PRE&gt;

where Txt_Sze is the initial size in mm, and textsize is the final rendered output size.&lt;BR /&gt;
&lt;BR /&gt;
i guess you could make an object that has an "if GLOB_SCALE = " for each scale you intend to use and do the maths on Txt_Sze accordingly?&lt;BR /&gt;
&lt;BR /&gt;
hth&lt;BR /&gt;
~/archiben</description>
      <pubDate>Tue, 18 Nov 2003 09:43:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2669#M1026</guid>
      <dc:creator>__archiben</dc:creator>
      <dc:date>2003-11-18T09:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Text That Doesn't Scale?</title>
      <link>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2670#M1027</link>
      <description>&lt;BLOCKQUOTE&gt;~/archiben wrote:&lt;BR /&gt;i guess you could make an object that has an "if GLOB_SCALE = " for each scale you intend to use and do the maths on Txt_Sze accordingly?&lt;/BLOCKQUOTE&gt;

You just have to multiply the text by the scale and divide by the right coefficient :&lt;BR /&gt;
If you add a parameter to specify the height of the text in mm : t_size = 55, for exemple, the correct formula should be :&lt;BR /&gt;
&lt;BR /&gt;
t_size * GLOB_SCALE / 1000&lt;BR /&gt;
&lt;BR /&gt;
You'll have to experiment with the 10^Y factor wether t_size is specified as a dimension or an integer</description>
      <pubDate>Tue, 18 Nov 2003 09:54:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Text-That-Doesn-t-Scale/m-p/2670#M1027</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-11-18T09:54:44Z</dc:date>
    </item>
  </channel>
</rss>

