<?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: how can i make an elliptical cone? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23279#M32525</link>
    <description>You can USE MULX, MULY or MULZ in front of the CONE command to get an elliptical cone.&lt;BR /&gt;
&lt;BR /&gt;
For the openings it would be better to use &lt;A href="http://www.selfgdl.com/3d_elemente/schnittbefehle/WALLNICHE/kompendium.php" target="_blank"&gt;WALLNICHE&lt;/A&gt;, which bases on &lt;A href="http://www.selfgdl.com/3d_elemente/schnittbefehle/CUTFORM/kompendium.php" target="_blank"&gt;CUTFORM&lt;/A&gt;. Unfortunatly there are no pictures on selfgdl to illustrate for non German speaking people, but there is a demonstration object on the CUTFORM page. The command works faster than SEOs and does not need additional elements in plan. The command has to be used inside the opening itself. To get an elliptical shape you have to use it in a way like this:&lt;BR /&gt;

&lt;PRE&gt;n=24
msk=15
sts=1+2+16+64+128
x=1.5 !width
y=2 !height
L=2 !length of the cone
distance=WALL_THICKNESS ! to the end

!calculation
r=x/2 !radius (not used) 
e=x/y !eccentricity (not used)
for i=0 to n
 w=i*360/n
 put x*cos(w)/2,b/2+y*sin(w)/2,msk
 next i

!cut
WALLNICHE n, 2, sts,   0,0,L  , distance, get(n*3)
WALLNICHE 5, 2, sts,   0,0,L  , distance,
  -a/2,0,msk,
   a/2,0,msk,
   a/2,b/2,msk,
  -a/2,b/2,msk,
  -a/2,0,msk&lt;/PRE&gt;</description>
    <pubDate>Mon, 06 Nov 2006 12:39:57 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2006-11-06T12:39:57Z</dc:date>
    <item>
      <title>how can i make an elliptical cone?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23278#M32524</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;forgive me if this is obvious - these are my first steps in GDL and i've tried to work it out myself, but its actually something i'm doing for work so i'm trying not to waste too much time&lt;BR /&gt;
&lt;BR /&gt;
basically i want to make an object like a cone but instead of having circles at either end, i need ellipses, and they have to be independently adjustable parametrically(!)  How would i go about this?&lt;BR /&gt;
&lt;BR /&gt;
This is for an object i am making that acts as the operator in a subtract SEO to give me a chamfered opening in a wall that i can then put windows into (I am trying to model a church building).  See attached image for the cone version.&lt;BR /&gt;
&lt;BR /&gt;
Cheers in advance&lt;BR /&gt;
&lt;BR /&gt;
l&amp;gt;&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="chamfered window.jpg" style="width: 350px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/9853iD9BFE01B3A74EA60/image-size/large?v=v2&amp;amp;px=999" role="button" title="chamfered window.jpg" alt="chamfered window.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 24 May 2023 10:46:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23278#M32524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-24T10:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make an elliptical cone?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23279#M32525</link>
      <description>You can USE MULX, MULY or MULZ in front of the CONE command to get an elliptical cone.&lt;BR /&gt;
&lt;BR /&gt;
For the openings it would be better to use &lt;A href="http://www.selfgdl.com/3d_elemente/schnittbefehle/WALLNICHE/kompendium.php" target="_blank"&gt;WALLNICHE&lt;/A&gt;, which bases on &lt;A href="http://www.selfgdl.com/3d_elemente/schnittbefehle/CUTFORM/kompendium.php" target="_blank"&gt;CUTFORM&lt;/A&gt;. Unfortunatly there are no pictures on selfgdl to illustrate for non German speaking people, but there is a demonstration object on the CUTFORM page. The command works faster than SEOs and does not need additional elements in plan. The command has to be used inside the opening itself. To get an elliptical shape you have to use it in a way like this:&lt;BR /&gt;

&lt;PRE&gt;n=24
msk=15
sts=1+2+16+64+128
x=1.5 !width
y=2 !height
L=2 !length of the cone
distance=WALL_THICKNESS ! to the end

!calculation
r=x/2 !radius (not used) 
e=x/y !eccentricity (not used)
for i=0 to n
 w=i*360/n
 put x*cos(w)/2,b/2+y*sin(w)/2,msk
 next i

!cut
WALLNICHE n, 2, sts,   0,0,L  , distance, get(n*3)
WALLNICHE 5, 2, sts,   0,0,L  , distance,
  -a/2,0,msk,
   a/2,0,msk,
   a/2,b/2,msk,
  -a/2,b/2,msk,
  -a/2,0,msk&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2006 12:39:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23279#M32525</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-11-06T12:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make an elliptical cone?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23280#M32526</link>
      <description>I have made an object that appears to make an opening&lt;BR /&gt;
like what you show in your image.&lt;BR /&gt;
It does not make an elliptical arch but a segmental arch&lt;BR /&gt;
up to a half round arch. It is used to make a splayed opening&lt;BR /&gt;
that an arch-head window is inserted into.&lt;BR /&gt;
Is this what you are looking for ?&lt;BR /&gt;
Please see attached image&lt;BR /&gt;
Peter Devlin&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/11039iF13BEC49702E50DD/image-size/large?v=v2&amp;amp;px=999" border="0" alt="splay arch head.jpg" title="splay arch head.jpg" /&gt;</description>
      <pubDate>Mon, 06 Nov 2006 18:55:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/how-can-i-make-an-elliptical-cone/m-p/23280#M32526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-06T18:55:31Z</dc:date>
    </item>
  </channel>
</rss>

