|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi there,
Last week, the heise newsticker had an article[1] about the
superformula. It is told that using this formula, you can describe
(almost) every thinkable shape with only a few parameters. Well, they
had a link to a site[2] where you can download a tool to play around
with, and even export a mesh to pov! I couldn't resist and now I think
I would like to share this with you.. even if only the rendering is
done in pov.
There was also someone who implemented the formula in pov[3],
dynamically generating a mesh. I didn't try that yet.
Ah yes, I was so stupid to not store the parameters to the formula for
this object, sorry ;)
Greets,
Dave V.
[1] http://www.heise.de/newsticker/meldung/45863
[2] http://www.genicap.com/
[3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
--
Dave "tPassive" Vogt| ruby -e "n ts.to_i;a ..n).to_a;a.each{
Linux user #225040| |x|puts x;(x*2).step(n,x){|j|a.delete j}}"
____________________|_____________________________ |
PGP Key: http://frozenbrain.com/public_key.asc \____________/
Post a reply to this message
Attachments:
Download 's3.jpg' (64 KB)
Preview of image 's3.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
This isosurface should handle the 2D cases of the superformula as
described in http://astronomy.swin.edu.au/~pbourke/povray/supershape/
//---------------------------------
#declare m = 7;
#declare n1 = 5;
#declare n2 = 5;
#declare n3 = 5;
#declare a = 1;
#declare b = 1;
isosurface {
function { pow(
pow(abs(cos(0.25*m*acos(y/sqrt(x*x+y*y))*abs(y)/y)/a),n2) +
pow(abs(sin(0.25*m*acos(y/sqrt(x*x+y*y))*abs(y)/y)/b),n3)
,1/n1) * sqrt(x*x+y*y) - 1 }
contained_by { box { <-2,-2,-2>, <2,2,2> } }
scale <1,1,0.001>
pigment { Yellow }
}
box {<0.01,0.01,1>,<-0.01,-0.01,-1> rotate<0, 0,0> pigment {Red} }
box {<0.01,0.01,1>,<-0.01,-0.01,-1> rotate<0,90,0> pigment {Green}}
box {<0.01,0.01,1>,<-0.01,-0.01,-1> rotate<90,0,0> pigment {Blue} }
Regards, Hans
Dave Vogt wrote:
> Hi there,
>
> Last week, the heise newsticker had an article[1] about the
> superformula. It is told that using this formula, you can describe
> (almost) every thinkable shape with only a few parameters. Well, they
> had a link to a site[2] where you can download a tool to play around
> with, and even export a mesh to pov! I couldn't resist and now I think
> I would like to share this with you.. even if only the rendering is
> done in pov.
> There was also someone who implemented the formula in pov[3],
> dynamically generating a mesh. I didn't try that yet.
>
> Ah yes, I was so stupid to not store the parameters to the formula for
> this object, sorry ;)
>
>
> Greets,
>
> Dave V.
>
> [1] http://www.heise.de/newsticker/meldung/45863
> [2] http://www.genicap.com/
> [3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
>
>
>
> ------------------------------------------------------------------------
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Dave Vogt" <spa### [at] frozenbraincom> wrote in message
news:405efa32@news.povray.org...
Hi there,
Last week, the heise newsticker had an article[1] about the
superformula. It is told that using this formula, you can describe
(almost) every thinkable shape with only a few parameters. Well, they
had a link to a site[2] where you can download a tool to play around
with, and even export a mesh to pov! I couldn't resist and now I think
I would like to share this with you.. even if only the rendering is
done in pov.
There was also someone who implemented the formula in pov[3],
dynamically generating a mesh. I didn't try that yet.
Ah yes, I was so stupid to not store the parameters to the formula for
this object, sorry ;)
Greets,
Dave V.
[1] http://www.heise.de/newsticker/meldung/45863
[2] http://www.genicap.com/
[3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
This looks like a fun tool.
export of attached shape to pov mesh turned out to be 3228 kB
Post a reply to this message
Attachments:
Download 'Image2.jpg' (84 KB)
Preview of image 'Image2.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Dave Vogt" <spa### [at] frozenbraincom> wrote in message
news:405efa32@news.povray.org...
Hi there,
Hi Dave
...Well, they
had a link to a site[2] where you can download a tool to play around
with, and even export a mesh to pov!
How are you opening this tool?
I couldn't resist and now I think
I would like to share this with you.. even if only the rendering is
done in pov.
?????????????!!! ;)
Ah yes, I was so stupid to not store the parameters to the formula for
this object, sorry ;)
Ah, you'll find them again, or at least get close.
~Steve~
Greets,
Dave V.
[1] http://www.heise.de/newsticker/meldung/45863
[2] http://www.genicap.com/
[3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
--
Dave "tPassive" Vogt| ruby -e "n=ts.to_i;a=..n).to_a;a.each{
Linux user #225040| |x|puts x;(x*2).step(n,x){|j|a.delete j}}"
____________________|_____________________________ |
PGP Key: http://frozenbrain.com/public_key.asc \____________/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
St. wrote:
> How are you opening this tool?
Unzip, run the .exe file ;)
Be sure to get the 3d Shape explorer, not the illustrator plugin.
>
>
> I couldn't resist and now I think
> I would like to share this with you.. even if only the rendering is
> done in pov.
>
> ?????????????!!! ;)
the tool supports exporting to povray.
> Ah, you'll find them again, or at least get close.
We will see..
see you
Dave
--
Dave "tPassive" Vogt| ruby -e "n=gets.to_i;a=(2..n).to_a;a.each{
Linux user #225040| |x|puts x;(x*2).step(n,x){|j|a.delete j}}"
____________________|_____________________________ |
PGP Key: http://frozenbrain.com/public_key.asc \____________/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Dave Vogt" <spa### [at] frozenbraincom> wrote in message
news:405efa32@news.povray.org...
> Hi there,
> Last week, the heise newsticker had an article[1] about the
> superformula. It is told that using this formula, you can describe
> (almost) every thinkable shape with only a few parameters. Well, they
> had a link to a site[2] where you can download a tool to play around
> with, and even export a mesh to pov! I couldn't resist and now I think
> I would like to share this with you.. even if only the rendering is
> done in pov.
> There was also someone who implemented the formula in pov[3],
> dynamically generating a mesh. I didn't try that yet.
Oy, yet another object I wouldn't want to be hit in the head with.
Very nice!
--
- Respectfully,
Dan
http://<broken link>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thanks for the tip. Do you have to register to get the export to POV
feature? Otherwise, how to?
thanks,
d.
"Dave Vogt" <spa### [at] frozenbraincom> wrote in message
news:405efa32@news.povray.org...
Hi there,
Last week, the heise newsticker had an article[1] about the
superformula. It is told that using this formula, you can describe
(almost) every thinkable shape with only a few parameters. Well, they
had a link to a site[2] where you can download a tool to play around
with, and even export a mesh to pov! I couldn't resist and now I think
I would like to share this with you.. even if only the rendering is
done in pov.
There was also someone who implemented the formula in pov[3],
dynamically generating a mesh. I didn't try that yet.
Ah yes, I was so stupid to not store the parameters to the formula for
this object, sorry ;)
Greets,
Dave V.
[1] http://www.heise.de/newsticker/meldung/45863
[2] http://www.genicap.com/
[3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
--
Dave "tPassive" Vogt| ruby -e "n=ts.to_i;a=..n).to_a;a.each{
Linux user #225040| |x|puts x;(x*2).step(n,x){|j|a.delete j}}"
____________________|_____________________________ |
PGP Key: http://frozenbrain.com/public_key.asc \____________/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Dennis Miller schrieb:
> Thanks for the tip. Do you have to register to get the export to POV
> feature? Otherwise, how to?
> thanks,
Right click on the displayed shape anf there you go.
--
mat### [at] matweide
http://www.matwei.de
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> Thanks for the tip. Do you have to register to get the export to POV
> feature? Otherwise, how to?
Yes, although the POVRay scripts work as well but it takes longer
to experiment to find the shape you want.
http://astronomy.swin.edu.au/~pbourke/surfaces/supershape3d
--
Paul Bourke
pdb_NOSPAMswin.edu.au
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> [3] http://astronomy.swin.edu.au/~pbourke/povray/supershape/
> This looks like a fun tool.
> export of attached shape to pov mesh turned out to be 3228 kB
The version you see there is the MSWindows one, if you want Mac OS-X
or Linux version see my www site.
http://astronomy.swin.edu.au/~pbourke/surfaces/supershape3d/
--
Paul Bourke
pdb_NOSPAMswin.edu.au
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|