|
|
On Wed, 19 Sep 2001 00:28:16 +0200, Anders Haglund wrote...
> A simple fractal (Sierpinski's box) made with a small macro. Made out of
> 160000 superellipsoids.
Why superellipsoids, and didn't that make it render like a dog?
But very pretty.
Bye for now,
Jamie. (Knackered, and going to bed...)
Post a reply to this message
|
|
|
|
Looking at the way you sort of moved some of the cubes at the bottom away
from their natural positions made me realize that you could create some
really cool animations with this. Imagine keeping an array of four or five
points moving around more or less randomly within the fractal, and all the
cubes being repelled by them by an amount inversely proportional to their
distance from them squared. It'd make it all bumpy and stuff. Slow to
render, but it may look cool.
Nice image, anyway. I like fractals.
- Slime
[ http://www.teja.nu/slime/ ]
[ http://www.teja.nu/slime/images/ ]
"Anders Haglund" <NOS### [at] hotmailcom> wrote in message
news:3ba7ca86@news.povray.org...
> A simple fractal (Sierpinski's box) made with a small macro. Made out of
> 160000 superellipsoids.
>
> /Anders
>
>
>
>
Post a reply to this message
|
|
|
|
On Tue, 9 Oct 2001 15:13:30 -0400, Mahalis wrote:
>Isn't it called the Sierpinski sponge?
Menger sponge.
--
#macro R(L P)sphere{L F}cylinder{L P F}#end#macro P(V)merge{R(z+a z)R(-z a-z)R(a
-z-z-z a+z)torus{1F clipped_by{plane{a 0}}}translate V}#end#macro Z(a F T)merge{
P(z+a)P(z-a)R(-z-z-x a)pigment{rgbt 1}hollow interior{media{emission T}}finish{
reflection.1}}#end Z(-x-x.2y)Z(-x-x.4x)camera{location z*-10rotate x*90}
Post a reply to this message
|
|
|
|
Ron Parker wrote:
>
> On Tue, 9 Oct 2001 15:13:30 -0400, Mahalis wrote:
> >Isn't it called the Sierpinski sponge?
>
> Menger sponge.
An extrapolation of the Sierpinski Gasket; each specific fractal has
three or four different names anyways...
--
David Fontaine <dav### [at] faricynet> ICQ 55354965
My raytracing gallery: http://davidf.faricy.net/
Post a reply to this message
|
|
|
|
I thought the Sierpinski gasket was triangle-shaped..
Oh well... never mind.
--
//Mahalis
camera{location<0,0.25,-2> look_at 0.5*y} #declare T=texture{pigment{crackle
scale 0.5 rotate 90 turbulence 0.75 color_map{[0 rgb 1][0.05 rgb 1][0.1
rgb<1,0.25,1>][0.25 rgbf 1][1 rgbf 1]}} finish{ambient 1}} #declare
c=difference{torus{0.5,0.1 rotate -90*x}box{<0.7,0,0.2>,<-0.7,-0.7,-0.2>}}
merge{object{c translate<0.5,0.5,0>} object{c translate<-0.5,0.5,0>}
cylinder{<1,0.5,0>,<1,0,0>,0.1} cylinder{<-1,0.5,0>,<-1,0,0>,0.1}
cylinder{0.5*y,0,0.1} texture{T}}
--
"David Fontaine" <dav### [at] faricynet> wrote in message
news:3BC645B9.B9B7376A@faricy.net...
> Ron Parker wrote:
> >
> > On Tue, 9 Oct 2001 15:13:30 -0400, Mahalis wrote:
> > >Isn't it called the Sierpinski sponge?
> >
> > Menger sponge.
>
> An extrapolation of the Sierpinski Gasket; each specific fractal has
> three or four different names anyways...
>
> --
> David Fontaine <dav### [at] faricynet> ICQ 55354965
> My raytracing gallery: http://davidf.faricy.net/
Post a reply to this message
|
|