<?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: Curved ramp 12 bug in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123078#M24650</link>
    <description>Ok. Tell me what kind of settings You need. One more thing: on my computer, it's called Curved Ramp 12 (there is no "02 12" mark). I've tried on three PC's, one of them have latest library updates from Graphisoft and still nothing.</description>
    <pubDate>Thu, 23 Apr 2009 07:08:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-04-23T07:08:47Z</dc:date>
    <item>
      <title>Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123076#M24648</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Greetings folks,&lt;BR /&gt;
I've noticed that mentioned library part has bug under 2D representation options.&lt;BR /&gt;
There are 3 types of 2D representation:&lt;BR /&gt;
- COMPLETE,&lt;BR /&gt;
- HORIZONTAL CUT,&lt;BR /&gt;
- DASHED OVER HORIZONTAL CUT&lt;BR /&gt;
&lt;BR /&gt;
Whatever you choose, AC will always display last one (dashed over horizontal cut), with cut line on app. 100cm above ground.&lt;BR /&gt;
Is there anyone who could help me with this? I would REALLY like to remove this line in some drawings.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 Apr 2009 07:23:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123076#M24648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-22T07:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123077#M24649</link>
      <description>Luka:&lt;BR /&gt;
&lt;BR /&gt;
For the library part Curved Ramp 02 12, no problem here. Maybe you should post the library part's settings.&lt;BR /&gt;
&lt;BR /&gt;
David&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/37446i2963BB0897918FC0/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Curved-Ramp-02-12.gif" title="Curved-Ramp-02-12.gif" /&gt;</description>
      <pubDate>Wed, 22 Apr 2009 12:02:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123077#M24649</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2009-04-22T12:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123078#M24650</link>
      <description>Ok. Tell me what kind of settings You need. One more thing: on my computer, it's called Curved Ramp 12 (there is no "02 12" mark). I've tried on three PC's, one of them have latest library updates from Graphisoft and still nothing.</description>
      <pubDate>Thu, 23 Apr 2009 07:08:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123078#M24650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-23T07:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123079#M24651</link>
      <description>Yes, there is a mistake in the Curved Ramp 12 INT.&lt;BR /&gt;
Line 15 of Parameter Script. Search for this portion of code. &lt;BR /&gt;

&lt;PRE&gt;!if GLOB_MODPAR_NAME = "symbolType2d" then
!	if symbolType2d = `Dashed over Horizontal Cut` then parameters symbolType2d_m = 1
!	if symbolType2d = `Horizontal Cut`             then parameters symbolType2d_m = 2
!	if symbolType2d = `Complete`                   then parameters symbolType2d_m = 3
!	parameters symbolType2d_m = symbolType2d_m
!else
!	if symbolType2d_m = 1 then symbolType2d = `Dashed over Horizontal Cut`
!	if symbolType2d_m = 2 then symbolType2d = `Horizontal Cut`
!	if symbolType2d_m = 3 then symbolType2d = `Complete`
!	parameters symbolType2d = symbolType2d
!endif&lt;/PRE&gt;

Replace with this one.&lt;BR /&gt;

&lt;PRE&gt;if GLOB_MODPAR_NAME = "symbolType2d" then
	if symbolType2d = `Dashed over Horizontal Cut` then symbolType2d_m = 1
	if symbolType2d = `Horizontal Cut`             then symbolType2d_m = 2
	if symbolType2d = `Complete`                   then symbolType2d_m = 3
endif

if GLOB_MODPAR_NAME = "symbolType2d_m" then
	if symbolType2d_m = 1 then symbolType2d = `Dashed over Horizontal Cut`
	if symbolType2d_m = 2 then symbolType2d = `Horizontal Cut`
	if symbolType2d_m = 3 then symbolType2d = `Complete`
endif

parameters symbolType2d = symbolType2d, symbolType2d_m = symbolType2d_m&lt;/PRE&gt;

Done.</description>
      <pubDate>Thu, 23 Apr 2009 09:45:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123079#M24651</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-23T09:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123080#M24652</link>
      <description>Thanks a lot!&lt;BR /&gt;
I've changed this and now it works fine.&lt;BR /&gt;
&lt;BR /&gt;
One more question, if you don't mind:&lt;BR /&gt;
Is there a way to put change original curved ramp 12 (part of AC library)?&lt;BR /&gt;
Because, now I have 2 gdl objects (original and new one). Is there a way to overwrite one in library?</description>
      <pubDate>Thu, 23 Apr 2009 10:01:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123080#M24652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-23T10:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123081#M24653</link>
      <description>If you don't want to alter the existing library you can save it with another name. &lt;BR /&gt;
&lt;BR /&gt;
- Place the original object and &lt;B&gt;select &lt;/B&gt;it&lt;BR /&gt;
- File &amp;gt; Library and Objects &amp;gt; &lt;B&gt;Open Object&lt;/B&gt;...&lt;BR /&gt;
- Click on the &lt;B&gt;Parameter Script&lt;/B&gt; button, on the left&lt;BR /&gt;
- Do the changes and &lt;B&gt;Save as&lt;/B&gt;.</description>
      <pubDate>Thu, 23 Apr 2009 10:04:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123081#M24653</guid>
      <dc:creator>rocorona</dc:creator>
      <dc:date>2009-04-23T10:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123082#M24654</link>
      <description>My mistake... bad explanation.&lt;BR /&gt;
I would like to alter existing library part (such is this curved ramp) and to place changed object into standard library. Not to save it in another folder or as external gdl.</description>
      <pubDate>Thu, 23 Apr 2009 11:30:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123082#M24654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-23T11:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123083#M24655</link>
      <description>To modify the original library you need to "extract" it from the container file (*.lcf). &lt;BR /&gt;
There is a command in the File menu/Library and Objects.&lt;BR /&gt;
Modify the object then "reconstruct" the container. (File/Library and Objects/Create container).</description>
      <pubDate>Thu, 23 Apr 2009 12:11:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123083#M24655</guid>
      <dc:creator>rocorona</dc:creator>
      <dc:date>2009-04-23T12:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123084#M24656</link>
      <description>&lt;BLOCKQUOTE&gt;leziljebovic wrote:&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;
I've changed this and now it works fine.&lt;/BLOCKQUOTE&gt;

After beta testers, GS should ask for gamma testers, to check library parts. It could be a full time job. &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/E&gt;</description>
      <pubDate>Thu, 23 Apr 2009 19:53:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123084#M24656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-23T19:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123085#M24657</link>
      <description>Of course if you alter the part and add it to the GS library, be sure to keep a duplicate around somewhere outside of the library just in case the next update does not fix the ramp. The updates will overwrite the library and any changes you have made.</description>
      <pubDate>Fri, 24 Apr 2009 02:12:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123085#M24657</guid>
      <dc:creator>Erich</dc:creator>
      <dc:date>2009-04-24T02:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123086#M24658</link>
      <description>I'm just shaking my head over this one.  (I shake my head a lot.)&lt;BR /&gt;
&lt;BR /&gt;
Not only the sloppy bug in the INT script, but on looking at the US script, it has a stupid English-German translation inside rather than doing something smarter as in the INT script.&lt;BR /&gt;
&lt;BR /&gt;
The INT UI looks nicer in my opinion, see attached screenshot - INT on left and US on right.  It does exhibit a pet peeve I've had for many versions - complained during betas with no result: there is lots of space to make the data entry fields larger, but for some reason GS likes to make them so small that in the metric case, a digit is being chopped off here - and in Imperial, we frequently cannot see the foot or inch symbol or, like metric, critical digits.  Also, look at the ramp material field in the INT case at left - you cannot read the name of the material at all.  No reason at all that this field cannot be quite wide.  I see this issue with material UI fields all over the library.  It is a quick fix, but GS does not seem to care.)&lt;BR /&gt;
&lt;BR /&gt;
I really do not understand why this ramp object is not the same for every user, regardless of country...&lt;BR /&gt;
&lt;BR /&gt;
Karl&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/18941iA4E3C5865C3AAF08/image-size/large?v=v2&amp;amp;px=999" border="0" alt="INT vs US.png" title="INT vs US.png" /&gt;</description>
      <pubDate>Fri, 24 Apr 2009 02:35:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123086#M24658</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2009-04-24T02:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123087#M24659</link>
      <description>...and here is the INT ramp profile tab UI, vs the ramp profile UI which is at the bottom of the single US panel in the previous screenshot.  Here, again, look at the UI's material entry field.  Looks like a heck of a lot of blank screen space to the right so that the button could be wide enough to read off the material name without clicking on it!  Drives me crazy.&lt;BR /&gt;
&lt;BR /&gt;
Karl&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/10781i17B500DB9957484B/image-size/large?v=v2&amp;amp;px=999" border="0" alt="INT profile.png" title="INT profile.png" /&gt;</description>
      <pubDate>Fri, 24 Apr 2009 02:36:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123087#M24659</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2009-04-24T02:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123088#M24660</link>
      <description>..Jebiga...</description>
      <pubDate>Fri, 24 Apr 2009 08:20:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123088#M24660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-24T08:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123089#M24661</link>
      <description>&lt;BLOCKQUOTE&gt;Karl wrote:&lt;BR /&gt;...and here is the INT ramp profile tab UI, vs the ramp profile UI which is at the bottom of the single US panel in the previous screenshot.  Here, again, look at the UI's material entry field.  Looks like a heck of a lot of blank screen space to the right so that the button could be wide enough to read off the material name without clicking on it!  Drives me crazy.&lt;BR /&gt;
&lt;BR /&gt;
Karl&lt;/BLOCKQUOTE&gt;

Karl, do you mean delta testers, for UI re-looking? &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt;&lt;BR /&gt;
IMHO, even the INT part looks ugly. One can do better.</description>
      <pubDate>Fri, 24 Apr 2009 19:12:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123089#M24661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-24T19:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123090#M24662</link>
      <description>well i was also using it and I think another problem shows if the angle of the curve is less than 45 degrees, the 2D representation shows a full circle no matter what. I think it is a bug.</description>
      <pubDate>Wed, 29 Jul 2009 15:54:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123090#M24662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-29T15:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123091#M24663</link>
      <description>whatever:&lt;BR /&gt;
&lt;BR /&gt;
I just played with this object a little bit, and found the problem you described, then set the &lt;FONT color="blue"&gt;Ascent Length&lt;/FONT&gt; to a smaller, appropriate length, and the 2D symbol displayed correctly. Also, the 3D model of the part was irrational with the too long Ascent Length. You may need to make sure that the parameters are set to appropriate values for such a short ramp.&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Thu, 30 Jul 2009 15:53:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123091#M24663</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2009-07-30T15:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123092#M24664</link>
      <description>&lt;BLOCKQUOTE&gt;David wrote:&lt;BR /&gt;whatever:&lt;BR /&gt;
&lt;BR /&gt;
I just played with this object a little bit, and found the problem you described, then set the &lt;FONT color="blue"&gt;Ascent Length&lt;/FONT&gt; to a smaller, appropriate length, and the 2D symbol displayed correctly. Also, the 3D model of the part was irrational with the too long Ascent Length. You may need to make sure that the parameters are set to appropriate values for such a short ramp.&lt;BR /&gt;
&lt;BR /&gt;
David&lt;/BLOCKQUOTE&gt;

Thanx david, but actually Ascent was turned off, and actually you can tell its a bug looking at the parameters where it mentions the slop angle ( grayed one ) , the value is negative!&lt;BR /&gt;
&lt;BR /&gt;
I usually model the ramps using the mesh-SEO-mesh trick, but I was trying to show a new user different options, but it looks like doing it the old manual - non intelligent way is still the only way .</description>
      <pubDate>Sat, 01 Aug 2009 20:56:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123092#M24664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-01T20:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Curved ramp 12 bug</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123093#M24665</link>
      <description>whatever:&lt;BR /&gt;
&lt;BR /&gt;
With your settings, does the ramp look OK in 3D?&lt;BR /&gt;
&lt;BR /&gt;
Could you post a screen shot of the Parameters &amp;gt; Ramp part of the dialog box (including the Height) so we can see your parameters? This may help us or the person at Graphisoft responsible for this object understand the issues.&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Sun, 02 Aug 2009 14:40:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Curved-ramp-12-bug/m-p/123093#M24665</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2009-08-02T14:40:23Z</dc:date>
    </item>
  </channel>
</rss>

