<?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: GDL prob with text anchor pt rot and maintain text orien in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171982#M23538</link>
    <description>&lt;BLOCKQUOTE&gt;"Erika Epstein" but it isn't giving me the results I am hoping for.[/quote wrote:&lt;BR /&gt;&lt;BR /&gt;
&lt;BR /&gt;
Sorry Erika... I didn't test the script... &lt;BR /&gt;
&lt;BR /&gt;
Here is a screen shot of an object which I have created based on your script... It seems to be ok on your "crash test"...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Sat, 15 Aug 2009 10:48:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-08-15T10:48:39Z</dc:date>
    <item>
      <title>GDL prob with text anchor pt rot and maintain text orient</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171975#M23531</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I am adding some graphical hotspots to some 2D symbols so I can move the text when necessary. I also have 3 options for text orientation horizontal, vertical, and 'smart' (rotates w/sym but mirrors so not seem upside down).&lt;BR /&gt;
&lt;BR /&gt;
When I have the text orientation options the anchor point of the text no longer is the same as the graphical hotspots. I tried many ADD2 and ROT2 options for the text location textx and texty with no acceptable results.Can someone point me in the right direction?&lt;BR /&gt;
&lt;BR /&gt;
 ! graphical hotspots seripting&lt;BR /&gt;
!!!!!Text ----------------------------------------&lt;BR /&gt;
PEN          txtpen&lt;BR /&gt;
	IF	tr=1 THEN !HORIZONTAL TEXT&lt;BR /&gt;
			ROT2 -symb_rotangle&lt;BR /&gt;
	ENDIF&lt;BR /&gt;
&lt;BR /&gt;
	IF	tr=2 THEN ! VERTICLE TEXT&lt;BR /&gt;
			ROT2 -symb_rotangle+90&lt;BR /&gt;
	ENDIF&lt;BR /&gt;
&lt;BR /&gt;
	IF tr=3 THEN !SMART ORIENTATION&lt;BR /&gt;
		mul2 1-2*symb_mirrored,1&lt;BR /&gt;
		IF symb_rotangle&amp;gt;90 AND symb_rotangle&amp;lt;270 THEN&lt;BR /&gt;
			ROT2 180&lt;BR /&gt;
		ELSE&lt;BR /&gt;
			ROT2 0&lt;BR /&gt;
		ENDIF&lt;BR /&gt;
	ENDIF&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
DEFINE STYLE    "symtextstyle" font, 1/(2.83464567)*fontsz,   txtanchor,  txtFaceCode&lt;BR /&gt;
SET STYLE "symtextstyle"&lt;BR /&gt;
TEXT2    textx,texty , switch_text&lt;BR /&gt;
	DEL 1&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Aug 2009 18:53:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171975#M23531</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-14T18:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171976#M23532</link>
      <description>Hi Erika,&lt;BR /&gt;
&lt;BR /&gt;
My first impression is that you miss to DEL the MUL transformation...&lt;BR /&gt;
&lt;BR /&gt;
Try:&lt;BR /&gt;
&lt;BR /&gt;

&lt;BLOCKQUOTE&gt;ROT2 -sgn (1 - 2 * symb_mirrored) * (symb_rotangle * (tr &amp;gt;= 1) - 90 * (tr = 2)) &lt;BR /&gt;
&lt;BR /&gt;
DEFINE STYLE    "symtextstyle" font, 1/(2.83464567)*fontsz,   txtanchor,  txtFaceCode&lt;BR /&gt;
SET STYLE "symtextstyle"&lt;BR /&gt;
&lt;BR /&gt;
TEXT2    textx,texty , switch_text&lt;BR /&gt;
&lt;BR /&gt;
DEL 1&lt;/BLOCKQUOTE&gt;
HTH&lt;BR /&gt;
&lt;BR /&gt;
edit: I did a little modification on the transformation... it seems to work now.&lt;BR /&gt;
&lt;BR /&gt;
...and I have a question... Why a 3rd status "Smart"?... Shouldn't they all be smart?...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_confused.gif" style="display : inline;" /&gt;</description>
      <pubDate>Fri, 14 Aug 2009 19:32:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171976#M23532</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-14T19:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171977#M23533</link>
      <description>Hi Paulo,&lt;BR /&gt;
I tried your code, but it isn't giving me the results I am hoping for. When  we are working in AC often we place for example a light switch symbol and mirror  and  rotate copies of the symbol as we go about placing them. My test is to place a symple in the plan and then rotate 15 copies  and then mirror this wheel of symbols to see what happens. &lt;BR /&gt;
&lt;BR /&gt;
I am attaching two screenshots to show. When I select one of the nonvertical switches, I notice the anchor point of the text no longer matches the graphical hotspot. Moving the graphical hotspot to move the text is now bizarre. It is difficult to accurately move the actual text. &lt;BR /&gt;
The text keeps being placed relative to the base of the switch.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
As to the three text orientations, I work with a number of firms.  While I use the 'smart' option, some firms have strict rules about all texts being vertical or horizontal relative to the screen. I added this drop down choices for them and also as an exercise for me with value lists &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;.&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/37427iFDC1956E9A393713/image-size/large?v=v2&amp;amp;px=999" border="0" alt="rotated symbol.jpg" title="rotated symbol.jpg" /&gt;</description>
      <pubDate>Fri, 14 Aug 2009 20:30:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171977#M23533</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-14T20:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171978#M23534</link>
      <description>Hi Paulo,&lt;BR /&gt;
I tried your code, but it isn't giving me the results I am hoping for. When  we are working in AC often we place for example a light switch symbol and mirror  and  rotate copies of the symbol as we go about placing them. My test is to place a symple in the plan and then rotate 15 copies  and then mirror this wheel of symbols to see what happens. &lt;BR /&gt;
&lt;BR /&gt;
I am attaching two screenshots to show. When I select one of the nonvertical switches, I notice the anchor point of the text no longer matches the graphical hotspot. Moving the graphical hotspot to move the text is now bizarre. It is difficult to accurately move the actual text. &lt;BR /&gt;
The text keeps being placed relative to the base of the switch.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
As to the three text orientations, I work with a number of firms.  While I use the 'smart' option, some firms have strict rules about all texts being vertical or horizontal relative to the screen. I added this drop down choices for them and also as an exercise for me with value lists &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;.</description>
      <pubDate>Fri, 14 Aug 2009 20:30:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171978#M23534</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-14T20:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171979#M23535</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I would suggest to keep the anchor point in the middle and doing&lt;BR /&gt;
...all the moving first&lt;BR /&gt;
...then text rotation &lt;BR /&gt;
...and lastly place the text at point 0, 0&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps, works nicely with my little projects.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Regards, Juha</description>
      <pubDate>Fri, 14 Aug 2009 23:28:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171979#M23535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-14T23:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171980#M23536</link>
      <description>Juha,&lt;BR /&gt;
You jumped ahead to the anchor point problem. Some symbols have two lines of text. How do you keep them from running into one another when the scale changes? Or when someone changes the font size?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
thanks!</description>
      <pubDate>Fri, 14 Aug 2009 23:46:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171980#M23536</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-14T23:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171981#M23537</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
Could be arranged by using anchor point 5 with the &lt;BR /&gt;
one line text. If there are two lines then the upper &lt;BR /&gt;
has anchor point 8 and the lower line has 2.&lt;BR /&gt;
&lt;BR /&gt;
The textblock command is a powerful solution if the &lt;BR /&gt;
number of the lines is not known ie. the text is long &lt;BR /&gt;
and the user is allowed to adjust the text field width. &lt;BR /&gt;
You can request a textblock's dimensions before placing it &lt;BR /&gt;
so centering it is not a problem.&lt;BR /&gt;
&lt;BR /&gt;
Might be an overkill solution if only a couple of words and &lt;BR /&gt;
lines are used.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Best regards, Juha</description>
      <pubDate>Sat, 15 Aug 2009 07:23:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171981#M23537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-15T07:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171982#M23538</link>
      <description>&lt;BLOCKQUOTE&gt;"Erika Epstein" but it isn't giving me the results I am hoping for.[/quote wrote:&lt;BR /&gt;&lt;BR /&gt;
&lt;BR /&gt;
Sorry Erika... I didn't test the script... &lt;BR /&gt;
&lt;BR /&gt;
Here is a screen shot of an object which I have created based on your script... It seems to be ok on your "crash test"...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 15 Aug 2009 10:48:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171982#M23538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-15T10:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171983#M23539</link>
      <description>And here is the object...&lt;BR /&gt;
&lt;BR /&gt;
HTH</description>
      <pubDate>Sat, 15 Aug 2009 10:49:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171983#M23539</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-15T10:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171984#M23540</link>
      <description>Thank you Paulo! &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt;</description>
      <pubDate>Mon, 17 Aug 2009 17:42:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171984#M23540</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-17T17:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171985#M23541</link>
      <description>Paulo, &lt;BR /&gt;
When I look at the 2D script in your object their is at the end of some of the numbers E-014. What is this?&lt;BR /&gt;
&lt;BR /&gt;
	line2 -0.03182522174242, -0.04636247205929,    0.03182522174242, 0.04636247205929&lt;BR /&gt;
	line2 -0.2759849876579,  -5.684341886081&lt;FONT color="#ff005b"&gt;E-014,&lt;/FONT&gt; 0.2793487716144,  -5.684341886081&lt;FONT color="#ff0048"&gt;E-014&lt;/FONT&gt;&lt;BR /&gt;
	arc2  -0.09936532665787, -5.684341886081&lt;FONT color="#ff0036"&gt;E-014,&lt;/FONT&gt; 0.08192157583591, 100.5325984305, 325.5325984304&lt;BR /&gt;
	arc2  0.09936532665787,  -5.684341886081&lt;FONT color="#ff0000"&gt;E-014&lt;/FONT&gt;, 0.08192157583591, 280.5325984305, 145.5325984304</description>
      <pubDate>Mon, 17 Aug 2009 21:39:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171985#M23541</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-17T21:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171986#M23542</link>
      <description>Hi Erika,&lt;BR /&gt;
&lt;BR /&gt;
Those weird codes are produced by the ArchiCAD engine...&lt;BR /&gt;
&lt;BR /&gt;
They appear in the code because I used 2d lines and arcs, and saved them as an object, then copy/pasted them into your object 2d script...&lt;BR /&gt;
&lt;BR /&gt;
Its a quicker process... once it was just a "Crash test dummy"  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
I think... When a number like this appears with this code, it's because the ArchiCAD engine avoids coincident nodes in lines and surfaces...&lt;BR /&gt;
So the engine creates very very small gaps between them to prevent the engine gets crazy... or something like this.&lt;BR /&gt;
&lt;BR /&gt;
But its just a guess...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt;</description>
      <pubDate>Tue, 18 Aug 2009 09:40:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171986#M23542</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T09:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171987#M23543</link>
      <description>Erika:&lt;BR /&gt;
&lt;BR /&gt;
I believe that is scientific notation that indicates that the decimal point is 14 places to the right (the number is actually decimal point, a bunch of zeros, the number before the E-14), such as -0.00000000000005684341886081.&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Tue, 18 Aug 2009 12:06:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171987#M23543</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2009-08-18T12:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171988#M23544</link>
      <description>I did some testing on the four lines of code that Erika posted&lt;BR /&gt;
and it seems that E-014 is equivalent to +5.684341886081 meters.&lt;BR /&gt;
&lt;BR /&gt;
Here is the test code:&lt;BR /&gt;
&lt;BR /&gt;
line2 -0.03182522174242, -0.04636247205929, 0.03182522174242, 0.04636247205929&lt;BR /&gt;
!!!!line2 -0.2759849876579, -5.684341886081E-014, 0.2793487716144, -5.684341886081E-014&lt;BR /&gt;
line2 -0.2759849876579, -5.684341886081&lt;FONT color="red"&gt;+5.684341886081&lt;/FONT&gt;, 0.2793487716144, -5.684341886081&lt;FONT color="red"&gt;+5.684341886081&lt;/FONT&gt;&lt;BR /&gt;
!!!!arc2 -0.09936532665787, -5.684341886081E-014, 0.08192157583591, 100.5325984305, 325.5325984304&lt;BR /&gt;
arc2 -0.09936532665787, -5.684341886081&lt;FONT color="red"&gt;+5.684341886081&lt;/FONT&gt;, 0.08192157583591, 100.5325984305, 325.5325984304&lt;BR /&gt;
!!!!arc2 0.09936532665787, -5.684341886081E-014, 0.08192157583591, 280.5325984305, 145.5325984304&lt;BR /&gt;
arc2 0.09936532665787, -5.684341886081&lt;FONT color="red"&gt;+5.684341886081&lt;/FONT&gt;, 0.08192157583591, 280.5325984305, 145.5325984304&lt;BR /&gt;
&lt;BR /&gt;
-5.684341886081&lt;FONT color="red"&gt;+5.684341886081&lt;/FONT&gt; of course&lt;BR /&gt;
equals zero which is what the autoscripted value should have been.&lt;BR /&gt;
&lt;BR /&gt;
I believe E-014 has something to do with logarithms and exponents.&lt;BR /&gt;
In the GDL manual under Transcendental Functions there is a function&lt;BR /&gt;
EXP (x) that is defined as "Returns the xth power of e (e=2.7182818)"&lt;BR /&gt;
&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Tue, 18 Aug 2009 16:08:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171988#M23544</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T16:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171989#M23545</link>
      <description>Perhaps the ArchiCAD code is becoming so complex that its developing some kind of artificial intelligence with a stubborn personality...&lt;BR /&gt;
&lt;BR /&gt;
so its becoming hard for him/it to admit that zero is zero... "NO!... zero is &lt;FONT color="#ff0000"&gt;-5.684341886081E-014&lt;/FONT&gt;"  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_eek.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_rolleyes.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
 &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_lol.gif" style="display : inline;" /&gt;</description>
      <pubDate>Tue, 18 Aug 2009 17:33:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171989#M23545</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T17:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171990#M23546</link>
      <description>Thanks for everyone's help and explanations. &lt;BR /&gt;
&lt;BR /&gt;
What still puzzles me is why AC is turning these numbers into Exponentials . Is this typical autoscripting in metric AC? I am unable to reproduce these results when I drag and drop the line-work into a 2D script window; I get just the feet and inches as drawn.&lt;BR /&gt;
&lt;BR /&gt;
LINE2 0'-0.0000", -0'-6.0000", 0'-0.0000", 0'-6.0000"</description>
      <pubDate>Tue, 18 Aug 2009 19:08:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171990#M23546</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-18T19:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171991#M23547</link>
      <description>Hello Erika,&lt;BR /&gt;
I just did an experiment where I set the Working Units &amp;amp; Levels&lt;BR /&gt;
to Meters then drew a couple of lines one meter long. I then opened&lt;BR /&gt;
a new library part and dragged and dropped the lines into the 2D&lt;BR /&gt;
script. The code was in Meters. I then changed the Working Units &amp;amp; Levels&lt;BR /&gt;
to Feet and Fractional Inches and dragged the same lines into the same&lt;BR /&gt;
2D script. The code for these lines was in Feet and decimal inches.&lt;BR /&gt;
So, it seems the units in an auto-scripted object depends on the&lt;BR /&gt;
units used in the project.&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Tue, 18 Aug 2009 19:46:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171991#M23547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T19:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171992#M23548</link>
      <description>Peter,&lt;BR /&gt;
I reproduced what you did, setting it on millimeters and then meters and then feet &amp;amp; inches. I didn't get any numbers with exponents, did you?</description>
      <pubDate>Tue, 18 Aug 2009 21:48:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171992#M23548</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-18T21:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171993#M23549</link>
      <description>Hello Erika,&lt;BR /&gt;
I'm sorry. I thought you were talking about the units being used&lt;BR /&gt;
in the script. I did not get values with exponents. I don't think&lt;BR /&gt;
you will be able to reproduce the code that Paulo got when&lt;BR /&gt;
he invoked the auto-script mechanism. The auto-script mechanism&lt;BR /&gt;
gets more screwy in every AC version. I was thinking of asking&lt;BR /&gt;
Paulo how exactly did he draw the arcs and lines thinking that&lt;BR /&gt;
maybe he drew them some five Meters below the origin then&lt;BR /&gt;
dragged them up to the origin before dragging and dropping them&lt;BR /&gt;
into the 2D script but decided that that should not cause the&lt;BR /&gt;
strange code. Maybe Paulo can tell us how he managed to get&lt;BR /&gt;
the auto-script mechanism to write such screwy code. &lt;BR /&gt;
Thanks,&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Tue, 18 Aug 2009 23:34:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171993#M23549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T23:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: GDL prob with text anchor pt rot and maintain text orien</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171994#M23550</link>
      <description>Peter, nothing for you to be sorry about. As always I am learning a lot more than I could have anticipated. &lt;BR /&gt;
I tried moving the lines I drew 463 miles away  from the origin to get the exponents to kick in, but perhaps not far enough.&lt;BR /&gt;
&lt;BR /&gt;
(in millimeters)&lt;BR /&gt;
LINE2 746274.7836314, 560996.1281125, 746275.0884134, 560996.1281125&lt;BR /&gt;
&lt;BR /&gt;
I don't know what the period in the middle of each x and y coordinate signifies.</description>
      <pubDate>Tue, 18 Aug 2009 23:52:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-prob-with-text-anchor-pt-rot-and-maintain-text-orient/m-p/171994#M23550</guid>
      <dc:creator>Erika Epstein</dc:creator>
      <dc:date>2009-08-18T23:52:48Z</dc:date>
    </item>
  </channel>
</rss>

