<?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: Creating an object from 2d drawing in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130915#M26435</link>
    <description>Hi,&lt;BR /&gt;
I did import the  plan autocad drawing to the object master script parameters..&lt;BR /&gt;
but the elevation drawing I couldn't...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt; &lt;BR /&gt;
How can I put it there in the elevation box?&lt;BR /&gt;
&lt;BR /&gt;
I saw the cars object in the libray, but they are different from what I want..&lt;BR /&gt;
You have to choose between the views ( top, elevation, back )..&lt;BR /&gt;
and all the drawing are on the same 2d first box...  I think that the time that this script must enter to see a different view on each .&lt;BR /&gt;
Thanks</description>
    <pubDate>Thu, 04 Dec 2008 01:23:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-12-04T01:23:26Z</dc:date>
    <item>
      <title>Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130905#M26425</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I wanna create an object using only their 2d representation from a dwg drawings.&lt;BR /&gt;
when i use it in floor plan and 3d views it shows the 2d representation and when seeing from the cut and elevation view it show the elevation block.&lt;BR /&gt;
no scripts or parametric, just the drawings.&lt;BR /&gt;
I tried on the images of the gdl master but it is only the representation, not the block actually...&lt;BR /&gt;
how can i do this??&lt;BR /&gt;
Thanks guys !&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/16753iCBD74D61010872C3/image-size/large?v=v2&amp;amp;px=999" border="0" alt="archicadblock.JPG" title="archicadblock.JPG" /&gt;</description>
      <pubDate>Tue, 02 Dec 2008 18:09:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130905#M26425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-02T18:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130906#M26426</link>
      <description>&lt;BLOCKQUOTE&gt;fabricfo wrote:&lt;BR /&gt;
no scripts or parametric, just the drawings.&lt;/BLOCKQUOTE&gt;

It requires some script - but a very small bit.&lt;BR /&gt;
&lt;BR /&gt;
The GDL symbol window supports 16 'fragments', which are much like layers.  You can place the (graphic) plan symbol in one fragment and the elevation symbol in another.  The 2D script then queries what view it is in (plan or elevation) and displays the appropriate fragment.&lt;BR /&gt;
&lt;BR /&gt;
You can see part of this (multiple views, each in a different fragment), but examinging the 2D Symbol window of any of the objects in the Vehicle Symbols 12 library folder, and turning on fragments 1, 2 or 3 (little square pushbuttons) in turn.  For example, Car Elev 01 12 is shown here. It has a top, side, front and rear view, but is just a 2d symbol, not a model.&lt;BR /&gt;
&lt;BR /&gt;
Someone else may have an example to share...&lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
Karl&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/16754i3E8EF058939EBE21/image-size/large?v=v2&amp;amp;px=999" border="0" alt="bmw-symbol.png" title="bmw-symbol.png" /&gt;</description>
      <pubDate>Tue, 02 Dec 2008 18:25:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130906#M26426</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2008-12-02T18:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130907#M26427</link>
      <description>The symbol illustrated (and others in that folder) have a parameter to let the user choose which symbol (top, side, etc) should appear.  In your case with the tree - top or side only - the choice could be automated in the script using the GLOB_CONTEXT global variable defined on page 227 of the GDL manual:&lt;BR /&gt;

&lt;BLOCKQUOTE&gt;GDL wrote:&lt;BR /&gt;GLOB_CONTEXT context of appearance&lt;BR /&gt;
1-library part editor, 2-floor plan, 3-3D view, 4-section/elevation, 5-settings dialog, 6-list, 7 - detail drawing, 8 - layout, 22 - editing feedback mode from the floor plan, 23 - editing&lt;BR /&gt;
feedback mode from a 3Dview, 24 - editing feedback mode from a section/elevation, 28 - editing feedback mode from a layout, 43 - generating as an operator from a 3D view, 44 -&lt;BR /&gt;
generating as an operator from a section/elevation, 46 - generating as an operator from a list&lt;/BLOCKQUOTE&gt;

Then, the simple 2D script would be something like this:&lt;BR /&gt;

&lt;PRE&gt;if GLOB_CONTEXT=4 then ! show elev view in section or elevation
    fragment2 1, 1
else ! show plan symbol for all other views
    fragment2, 2, 1
endif&lt;/PRE&gt;

Karl</description>
      <pubDate>Tue, 02 Dec 2008 18:35:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130907#M26427</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2008-12-02T18:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130908#M26428</link>
      <description>Thanks a lot Karl,&lt;BR /&gt;
I will try to make it and them I put it here&lt;BR /&gt;
 &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt;</description>
      <pubDate>Tue, 02 Dec 2008 18:41:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130908#M26428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-02T18:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130909#M26429</link>
      <description>You're welcome... but I just noticed that you wanted to see the sketch in a 3D view also.  To do that, you'll need a jpeg (etc) of it and use the parapicture object that Dwight talks about in various threads.  He has uploaded it to the GDL Depository.&lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
Karl</description>
      <pubDate>Tue, 02 Dec 2008 18:43:24 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130909#M26429</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2008-12-02T18:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130910#M26430</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
You can open the 2D-DWG as an object;&lt;BR /&gt;
Archive...-&amp;gt; Libraries &amp;amp; objects...-&amp;gt; Open object...&lt;BR /&gt;
&lt;BR /&gt;
This creates an GDL-object where the DWG 2D-lines visible in the 3D-view too. The lines are&lt;BR /&gt;
lying on the XY-plane, but with the "rotx 90"-command the drawing wireframe is rotated &lt;BR /&gt;
vertical to the XZ-plane.&lt;BR /&gt;
&lt;BR /&gt;
Hope this makes sense.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Regards, Juha</description>
      <pubDate>Wed, 03 Dec 2008 11:55:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130910#M26430</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-03T11:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130911#M26431</link>
      <description>&lt;BLOCKQUOTE&gt;Karl wrote:&lt;BR /&gt;You're welcome... but I just noticed that you wanted to see the sketch in a 3D view also.  To do that, you'll need a jpeg (etc) of it and use the parapicture object that Dwight talks about in various threads.  He has uploaded it to the GDL Depository.
&lt;/BLOCKQUOTE&gt;

Juha is right, and sorry for the 'senior moment' with the comment above where I forgot that the original drawing was a dwg and not a hand sketch.  Duh.&lt;BR /&gt;
&lt;BR /&gt;
Karl</description>
      <pubDate>Wed, 03 Dec 2008 18:38:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130911#M26431</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2008-12-03T18:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130912#M26432</link>
      <description>YESSSSSS Juha...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
That exactly what I want...&lt;BR /&gt;
The only thing is that in the elevation I need another dwg drawing... not the same.... is there a way to combine them??&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Wed, 03 Dec 2008 21:11:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130912#M26432</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-03T21:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130913#M26433</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
As Karl suggested using the GLOB_CONTEXT variable it can be done automatically.&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;if GLOB_CONTEXT=4 then ! show elev view in section or elevation 

   !---&amp;gt; paste the 3D-view code here

else ! show plan symbol for all other views 

    !---&amp;gt; paste the other view code here

endif
&lt;/PRE&gt;

&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Regards, Juha</description>
      <pubDate>Wed, 03 Dec 2008 23:07:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130913#M26433</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-03T23:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130914#M26434</link>
      <description>We only had to wait for 3599 posts this to happen &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;

&lt;BLOCKQUOTE&gt;Karl wrote:&lt;BR /&gt;sorry for the 'senior moment' &lt;/BLOCKQUOTE&gt;

--&lt;BR /&gt;
Regards, Juha</description>
      <pubDate>Wed, 03 Dec 2008 23:10:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130914#M26434</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-03T23:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130915#M26435</link>
      <description>Hi,&lt;BR /&gt;
I did import the  plan autocad drawing to the object master script parameters..&lt;BR /&gt;
but the elevation drawing I couldn't...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt; &lt;BR /&gt;
How can I put it there in the elevation box?&lt;BR /&gt;
&lt;BR /&gt;
I saw the cars object in the libray, but they are different from what I want..&lt;BR /&gt;
You have to choose between the views ( top, elevation, back )..&lt;BR /&gt;
and all the drawing are on the same 2d first box...  I think that the time that this script must enter to see a different view on each .&lt;BR /&gt;
Thanks</description>
      <pubDate>Thu, 04 Dec 2008 01:23:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130915#M26435</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-04T01:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130916#M26436</link>
      <description>&lt;BLOCKQUOTE&gt;Juha wrote:&lt;BR /&gt;We only had to wait for 3599 posts this to happen &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;

&lt;BLOCKQUOTE&gt;Karl wrote:&lt;BR /&gt;sorry for the 'senior moment' &lt;/BLOCKQUOTE&gt;

&lt;/BLOCKQUOTE&gt;

Kiitos, Juha... but you just haven't noticed all of my other ones [I edit some before anyone notices!].  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_rolleyes.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_redface.gif" style="display : inline;" /&gt;&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Karl</description>
      <pubDate>Thu, 04 Dec 2008 05:30:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130916#M26436</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2008-12-04T05:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130917#M26437</link>
      <description>I seem to be having a similar problem to fabricfo.&lt;BR /&gt;
&lt;BR /&gt;
I've created an object that has the following 2D script and nothing else:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;HOTSPOT2 0,0

IF (GLOB_CONTEXT=4) THEN
	RECT2 0,0, 1, 1
ELSE
	CIRCLE2 0,0, 1
ENDIF
&lt;/PRE&gt;

It sort of works, but not quite. When I place the object in plan, it draws a circle. When I place it elevation, it draws a rectangle. So far, so good. &lt;BR /&gt;
&lt;BR /&gt;
However, if I place an object in plan, and then view it in elevation, it's blank - the object isn't there. Likewise, if I place the object in elevation, it doesn't appear in plan. I've tried rebuilding the view but no luck.&lt;BR /&gt;
&lt;BR /&gt;
Any idea why this is? I found a semi-workaround where I just draw the circle in plan, but create the elevation in the 3D script window:
&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;IF (GLOB_CONTEXT=4) THEN
	ROTx 90
	RECT 1,1
	DEL 1
ELSE
	!Draw 3D version of object
ENDIF
&lt;/PRE&gt;

However, this limits me to using the 3D planar elements, so I lose full control over fills, can't draw lines, have to specify the symbol in three dimensions, etc.&lt;BR /&gt;
&lt;BR /&gt;
Is there any way to do all the elevational work within the 2D script? I just can't seem to get it to work...&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Derek</description>
      <pubDate>Fri, 16 Jul 2010 14:24:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130917#M26437</guid>
      <dc:creator>derekjackson</dc:creator>
      <dc:date>2010-07-16T14:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130918#M26438</link>
      <description>Hi Derek,&lt;BR /&gt;
&lt;BR /&gt;
You found the only solution for the task. It's not a workaround.&lt;BR /&gt;
&lt;BR /&gt;
Sections and elevations are 3D based in ArchiCAD. This means that there is no possibility to script the section representation in 2D. Naturally, as a workaround, you can  place 2D-based objects on the section view but then they are 2D 'patches' to the section - they won't be included in the VB model. &lt;BR /&gt;
You've noticed all this already but I wanted to confirm that this is the full set of tools you have.&lt;BR /&gt;
&lt;BR /&gt;
Best regards,</description>
      <pubDate>Mon, 19 Jul 2010 07:49:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130918#M26438</guid>
      <dc:creator>ztaskai</dc:creator>
      <dc:date>2010-07-19T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130919#M26439</link>
      <description>Thanks Zsolt, good to know. Is there at least a way of specifying fill and background pens on the 3D POLY_ element? It obviously takes its pen information from somewhere when drawn in 2D elevations...</description>
      <pubDate>Mon, 19 Jul 2010 08:35:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130919#M26439</guid>
      <dc:creator>derekjackson</dc:creator>
      <dc:date>2010-07-19T08:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130920#M26440</link>
      <description>Okay, one problem with this solution. It works fine if the elevation is placed looking directly north or south, but any other angle and the object is seen skewed.&lt;BR /&gt;
&lt;BR /&gt;
I've tried code to rotate the object to face the camera:
&lt;PRE&gt;dkx = K~ - X~
dly = L~ - Y~
azi = ATN(dly/dkx)	!Azimuth	

ROTz (90 + azi - SYMB_ROTANGLE) !W~&lt;/PRE&gt;

This works fine for objects in 3D view, but when used in elevation, it rotates the object to face the last 3D camera position - not the current elevation angle.&lt;BR /&gt;
&lt;BR /&gt;
Is there an equivalent GLOB variable for detecting angle of elevation / section? If not, it seems this method won't work either...</description>
      <pubDate>Thu, 22 Jul 2010 14:34:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130920#M26440</guid>
      <dc:creator>derekjackson</dc:creator>
      <dc:date>2010-07-22T14:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130921#M26441</link>
      <description>I'm guessing no response means that there isn't a way! &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;&lt;BR /&gt;
&lt;BR /&gt;
Surprising, as the program must know the angle that the elevation line sits at to be able to calculate what is seen and what isn't.&lt;BR /&gt;
&lt;BR /&gt;
If anyone knows a way of detecting section or elevation angle, please let me know... If not, any chance it could be added in as either a GLOB or REQUEST variable in a future release?!&lt;BR /&gt;
&lt;BR /&gt;
I guess the only other solution for now is to create simple revolved forms that look like simplistic trees - these should then be fine from any angle of elevation.&lt;BR /&gt;
&lt;BR /&gt;
Cheers for the help so far, anyway.</description>
      <pubDate>Tue, 27 Jul 2010 09:20:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130921#M26441</guid>
      <dc:creator>derekjackson</dc:creator>
      <dc:date>2010-07-27T09:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130922#M26442</link>
      <description>&lt;BLOCKQUOTE&gt;derekjackson wrote:&lt;BR /&gt;Is there an equivalent GLOB variable for detecting angle of elevation / section? ...&lt;/BLOCKQUOTE&gt;
Unfortunately no... But you can vote &lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=32357" target="_blank"&gt;&lt;/A&gt;&lt;S&gt;&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=32357" target="_blank"&gt;&lt;/A&gt;&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=32357" target="_blank"&gt;&lt;/A&gt;&lt;/S&gt;&lt;FONT color="#2d00ff"&gt;here&lt;/FONT&gt;&lt;E&gt;&lt;/E&gt; and cross your fingers.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
&lt;BR /&gt;
Paulo</description>
      <pubDate>Tue, 27 Jul 2010 10:59:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130922#M26442</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-27T10:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130923#M26443</link>
      <description>Thanks. It's becoming quite a routine now that we come up with a great idea for an object, get 90% there, then discover a limitation of GDL that stops us finishing it...</description>
      <pubDate>Tue, 27 Jul 2010 12:18:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130923#M26443</guid>
      <dc:creator>derekjackson</dc:creator>
      <dc:date>2010-07-27T12:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an object from 2d drawing</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130924#M26444</link>
      <description>&lt;BLOCKQUOTE&gt;derekjackson wrote:&lt;BR /&gt;It's becoming quite a routine now that we come up with a great idea for an object, get 90% there, then discover a limitation of GDL that stops us finishing it...&lt;/BLOCKQUOTE&gt;
I've been there too...  Thats why I strongly advice everyone to previously make an implementation plan before diving into script.&lt;BR /&gt;
I used to hit this wall a lot of times before I have Andrew Watson's &lt;A href="http://www.cadimageworld.com/products/gdlhandbook" target="_blank"&gt;&lt;/A&gt;&lt;S&gt;&lt;A href="http://www.cadimageworld.com/products/gdlhandbook" target="_blank"&gt;&lt;/A&gt;&lt;A href="http://www.cadimageworld.com/products/gdlhandbook" target="_blank"&gt;&lt;/A&gt;&lt;/S&gt;&lt;FONT color="#005bff"&gt;GDL Handbook&lt;/FONT&gt;&lt;E&gt;&lt;/E&gt;.&lt;BR /&gt;
It will give you precious hints on starting a personal/commercial GDL object.&lt;BR /&gt;
Anyway...  It seems that GS GDL team put this on the top priority for next releases...  So you'll just have to put your object in standby for now.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
&lt;BR /&gt;
Paulo</description>
      <pubDate>Tue, 27 Jul 2010 13:58:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Creating-an-object-from-2d-drawing/m-p/130924#M26444</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-27T13:58:26Z</dc:date>
    </item>
  </channel>
</rss>

