POV-Ray : Newsgroups : povray.binaries.images : How do you want your eggs today ? [78Kbu] Server Time
16 Aug 2024 14:19:01 EDT (-0400)
  How do you want your eggs today ? [78Kbu] (Message 1 to 10 of 14)  
Goto Latest 10 Messages Next 4 Messages >>>
From: L'Harmonieux Forgeron
Subject: How do you want your eggs today ? [78Kbu]
Date: 9 Mar 2002 13:12:18
Message: <3C8A51FC.B45F3D68@free.fr>
Just trying a new object: ovus.
It's just a pair of spheres with the right glue...

Thanks to geometry description found at
http://chronomath.irem.univ-mrs.fr/Courbes/ovale.html
-- 
Non Sine Numine
http://grimbert.cjb.net/
Etiquette is for those with no breeding;
fashion for those with no taste.


Post a reply to this message


Attachments:
Download 'demo.jpg' (77 KB)

Preview of image 'demo.jpg'
demo.jpg


 

From: Sir Charles W  Shults III
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 9 Mar 2002 13:19:28
Message: <3c8a5230$1@news.povray.org>
Are you writing a macro for this?  I have used two spheres, one round
and one elongated, chopped in half and fused together to make perfect eggs
before.  Sounds like a useful and simple tool.

Cheers!

Chip Shults
My robotics, space and CGI web page - http://home.cfl.rr.com/aichip


Post a reply to this message

From: Steven Pigeon
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 9 Mar 2002 15:05:35
Message: <3C8A6B5E.61D50C58@iro.umontreal.ca>
L'Harmonieux Forgeron wrote:

> Just trying a new object: ovus.
> It's just a pair of spheres with the right glue...
>
> Thanks to geometry description found at
> http://chronomath.irem.univ-mrs.fr/Courbes/ovale.html
> --
> Non Sine Numine
> http://grimbert.cjb.net/
> Etiquette is for those with no breeding;
> fashion for those with no taste.
>
>   ------------------------------------------------------------------------
>  [Image]

...Nice...

This page gives a generalized "egg" formula:
http://www.2dcurves.com/quartic/quartice.html



form.

A little toying with mathematica gives the
attached picture of an egg, with a=1/4 and b=7/5.

(I also wrote a Mathematica fonction that takes in
mathematica Graphics and converts it to mesh)

Best,

    S.

----------------------------------------------------------
Steven Pigeon                     Ph. D. candidate
University of Montreal.
pig### [at] iroumontrealca           Topic: data compression
----------------------------------------------------------
         http://www.iro.umontreal.ca/~pigeon


Post a reply to this message


Attachments:
Download 'egg.wmf.dat' (328 KB)

From: Sir Charles W  Shults III
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 9 Mar 2002 16:25:52
Message: <3c8a7de0@news.povray.org>
That's a nice algorithm, but you can do it very simply with this program
(attached).

Cheers!

Chip Shults
My robotics, space and CGI web page - http://home.cfl.rr.com/aichip


Post a reply to this message


Attachments:
Download 'Eggy.pov.txt' (2 KB) Download 'Eggy.jpg' (12 KB)

Preview of image 'Eggy.jpg'
Eggy.jpg


 

From: Tor Olav Kristensen
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 9 Mar 2002 17:35:29
Message: <3C8A8D4E.67C17678@hotmail.com>
L'Harmonieux Forgeron wrote:
> 
> Just trying a new object: ovus.
> It's just a pair of spheres with the right glue...
> 
> Thanks to geometry description found at
> http://chronomath.irem.univ-mrs.fr/Courbes/ovale.html

From what I could see at the web page
you provided a link to above, it seems
that these eggs are glued together with
the same type of CSG-glue as I used to
assemle/connect the spheres and tori in
these two images:

http://news.povray.org/povray.binaries.images/13595/
http://news.povray.org/povray.binaries.images/12039/


Tor Olav


P.S.: I want my eggs done like this:

http://news.povray.org/povray.binaries.images/13849/
http://news.povray.org/povray.general/3255/23995


Post a reply to this message

From: Jérôme Grimbert
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 11 Mar 2002 04:57:06
Message: <3C8C7F87.32A4EC3F@atosorigin.com>
"Sir Charles W. Shults III" wrote:
> 
>     Are you writing a macro for this? 
No, I foolishly write a patch... copying some code of the sphere and torus.

-- 
Non Sine Numine
http://grimbert.cjb.net/


Post a reply to this message

From: Grey Knight
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 11 Mar 2002 07:10:26
Message: <3C8C9EB1.EF577222@namtar.qub.ac.uk>
"Sir Charles W. Shults III" wrote:
> 
>     Are you writing a macro for this?  I have used two spheres, one round
> and one elongated, chopped in half and fused together to make perfect eggs
> before.  Sounds like a useful and simple tool.
Me too. In fact I use this:

#macro ovoid (Center, EquatorRadius, MinRadius, MaxRadius, Directrix)
  union{
    difference{
      sphere{ 0,1 scale (MinRadius/EquatorRadius) }
      plane{ -y, 0 }
    }
    difference{
      sphere{ 0,1 scale (MaxRadius/EquatorRadius) }
      plane{ y, 0 }
    }
    rotate_to(Directrix-Center)
    scale EquatorRadius
    translate Center
  }
#end

Where rotate_to() is something like Reorient_Trans(); it rotates from +y
to the specified vector.

-- 
signature{
  "Grey Knight" contact{ email "gre### [at] yahoocom" }
  site_of_week{ url "http://digilander.iol.it/jrgpov" }
}


Post a reply to this message

From:
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 11 Mar 2002 07:22:42
Message: <298p8ust472ppd39ik1sfs6435f56hujab@4ax.com>

<jer### [at] atosorigincom> wrote:
> >     Are you writing a macro for this? 
> No, I foolishly write a patch...

Do you plan uv-mapping support?

ABX


Post a reply to this message

From:
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 11 Mar 2002 07:26:25
Message: <ce8p8ukuotes55pcq3nm9i29dm3j43ibum@4ax.com>
On Sat, 09 Mar 2002 19:18:36 +0100, L'Harmonieux Forgeron <jgr### [at] freefr>
wrote:
> Just trying a new object: ovus.
> It's just a pair of spheres with the right glue...

interesting
here is my old poor attempt on egg in povray

ABX


Post a reply to this message


Attachments:
Download 'jajco.jpg' (29 KB)

Preview of image 'jajco.jpg'
jajco.jpg


 

From: Jérôme Grimbert
Subject: Re: How do you want your eggs today ? [78Kbu]
Date: 11 Mar 2002 07:33:42
Message: <3C8CA43A.51F17301@atosorigin.com>

> Do you plan uv-mapping support?

No.
I do not like UV-mapping and I do not want to perform more math
to get a metric along the 2D curve. (a first though makes me believe
I would have to resolve an integral of 3 parts, with the middle part depending
on the parameters... a projection mapping might be worth consideration nevertheless,
so you could have UV mapping if you really want afterall...)
Moreover, my version of pov does not have UV installed anyway!


Post a reply to this message

Goto Latest 10 Messages Next 4 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.