POV-Ray : Newsgroups : povray.binaries.images : Twisted Sunflower (~99kbu) Server Time
17 Aug 2024 10:13:35 EDT (-0400)
  Twisted Sunflower (~99kbu) (Message 1 to 10 of 20)  
Goto Latest 10 Messages Next 10 Messages >>>
From: Redbeard (MDJohnson)
Subject: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 01:49:06
Message: <3bd11052@news.povray.org>
AFter trying to catch up after three years (and having Outlook Express fight me
every step) I've decided to post one of my more recent renderings.

This is a fibinocci sunflower pattern done up in blobs and twisted about.

I'll probably be doing more postings in the coming weeks.  If I could get a web
site up, I'd put stuff there.  But, in the meantime, this'll work.

Questions and comments welcome (of course)

Michael
--
#macro M(D,J)text{ttf"cyrvetic.ttf"D 1,0translate-J}#end#macro N(E,K)#local A=
M(E,K)light_source{-z*30rgb 1projected_through{A}}#end N("Michael"<1.6,-.2,5>)
N("Johnson"<1.9.8,5>)sphere{z*9,4pigment{gradient x+y scale 10color_map{[0 rgb
x][1rgb x+y]}sine_wave}} // (c)2001 Michael D Johnson red### [at] wvadelphianet


Post a reply to this message


Attachments:
Download 'TwistedSunflower.jpg' (100 KB)

Preview of image 'TwistedSunflower.jpg'
TwistedSunflower.jpg


 

From: JRG
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 07:38:47
Message: <3bd16247@news.povray.org>
Fibinocci?! Do you mean *Fibonacci* (or even better Leonardo Pisano)?
BTW this looks really cool. Beautiful textures.

--
Jonathan.

"Redbeard (MDJohnson)" <red### [at] wvadelphianet> ha scritto nel messaggio
news:3bd11052@news.povray.org...
> AFter trying to catch up after three years (and having Outlook Express
fight me
> every step) I've decided to post one of my more recent renderings.
>
> This is a fibinocci sunflower pattern done up in blobs and twisted about.
>
> I'll probably be doing more postings in the coming weeks.  If I could get
a web
> site up, I'd put stuff there.  But, in the meantime, this'll work.
>
> Questions and comments welcome (of course)
>
> Michael
> --
> #macro M(D,J)text{ttf"cyrvetic.ttf"D 1,0translate-J}#end#macro
N(E,K)#local A=
> M(E,K)light_source{-z*30rgb 1projected_through{A}}#end
N("Michael"<1.6,-.2,5>)
> N("Johnson"<1.9.8,5>)sphere{z*9,4pigment{gradient x+y scale 10color_map{[0
rgb
> x][1rgb x+y]}sine_wave}} // (c)2001 Michael D Johnson
red### [at] wvadelphianet
>
>
>


Post a reply to this message

From: Redbeard (MDJohnson)
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 09:46:28
Message: <3bd18034@news.povray.org>
> Fibinocci?! Do you mean *Fibonacci* (or even better Leonardo Pisano)?
Ooops - missed that.  Yes, Fibonacci.  Of course, I've never heard of it called
the Pisano sequence :-)

> BTW this looks really cool. Beautiful textures.
Thanks!  I was really happy with the background texture.  Feels almost like
velvet.

>
> --
> Jonathan.
>

Michael
--
#macro M(D)#local J=strlen(D);#local _=""#while(J>0)#local _=concat(_,substr(D
,J,1))#local J=J-1;#end _#end sphere{z*9,5pigment{rgb x}}#macro N(D,J)text{ttf
"timrom.ttf"M(D)1,0 translate-J}#end#macro O(E,K)#local _=N(E,K)light_source{-
z*9rgb 1projected_through{_}}#end O("leahciM"<1.6,-.3.9>)O("nosnhoJ"<1.6.9.9>)


Post a reply to this message

From: JRG
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 11:06:43
Message: <3bd19303@news.povray.org>
IIRC Fibonacci (i.e. filius Bonacci: Bonacci's son) was just a *nick name*
for Leonardo Pisano.

> Ooops - missed that.  Yes, Fibonacci.  Of course, I've never heard of it
called
> the Pisano sequence :-)

Neither I have. But it seems like *Fibinocci* is a very common mistake.

>
> > BTW this looks really cool. Beautiful textures.
> Thanks!  I was really happy with the background texture.  Feels almost
like
> velvet.

I was just wandering how you did it.

--
Jonathan.


Post a reply to this message

From: Tony[B]
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 15:21:36
Message: <3bd1cec0@news.povray.org>
Pretty. Looks like a milky plastic.


Post a reply to this message

From: Redbeard (MDJohnson)
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 18:20:28
Message: <3bd1f8ac$1@news.povray.org>
"JRG" <jrg### [at] hotmailcom> wrote in message news:3bd19303@news.povray.org...
> >
> > > BTW this looks really cool. Beautiful textures.
> > Thanks!  I was really happy with the background texture.  Feels almost
> like
> > velvet.
>
> I was just wandering how you did it.
>
> --
> Jonathan.
>

The velvet?  Pretty simple, actually.  I used the following pigment within a
sky_sphere.

// A red velvet-like texture
// Michael D Johnson (red### [at] wvadelphianet)
// Use freely.  But give me credit if you can :-)
#declare C_Reds = color_map { [0.0 Black][1.0 Red * 0.5] }

pigment
{
 average
 pigment_map
 {
  [1.00
   bozo
   color_map { C_Reds}
   sine_wave frequency 4 scale 0.25
   turbulence 0.5
   omega 0.5 octaves 3 lambda 2
  ]
  [0.90
   bozo
   color_map { C_Reds}
   scallop_wave frequency 2 scale 0.25
   turbulence 0.9
   omega 0.75 octaves 4 lambda 2.5
   rotate y * 45
  ]
 }
}

Enjoy!
Michael

--
#macro M(D)#local J=strlen(D);#local _=""#while(J>0)#local _=concat(_,substr(D
,J,1))#local J=J-1;#end _#end sphere{z*9,5pigment{rgb x}}#macro N(D,J)text{ttf
"timrom.ttf"M(D)1,0 translate-J}#end#macro O(E,K)#local _=N(E,K)light_source{-
z*9rgb 1projected_through{_}}#end O("leahciM"<1.6,-.3.9>)O("nosnhoJ"<1.6.9.9>)


Post a reply to this message

From: JRG
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 18:32:24
Message: <3bd1fb78@news.povray.org>
Thank you.

--
Jonathan.
"Redbeard (MDJohnson)" <red### [at] wvadelphianet> ha scritto nel messaggio
news:3bd1f8ac$1@news.povray.org...
>
> "JRG" <jrg### [at] hotmailcom> wrote in message
news:3bd19303@news.povray.org...
> > >
> > > > BTW this looks really cool. Beautiful textures.
> > > Thanks!  I was really happy with the background texture.  Feels almost
> > like
> > > velvet.
> >
> > I was just wandering how you did it.
> >
> > --
> > Jonathan.
> >
>
> The velvet?  Pretty simple, actually.  I used the following pigment within
a
> sky_sphere.
>
> // A red velvet-like texture
> // Michael D Johnson (red### [at] wvadelphianet)
> // Use freely.  But give me credit if you can :-)
> #declare C_Reds = color_map { [0.0 Black][1.0 Red * 0.5] }
>
> pigment
> {
>  average
>  pigment_map
>  {
>   [1.00
>    bozo
>    color_map { C_Reds}
>    sine_wave frequency 4 scale 0.25
>    turbulence 0.5
>    omega 0.5 octaves 3 lambda 2
>   ]
>   [0.90
>    bozo
>    color_map { C_Reds}
>    scallop_wave frequency 2 scale 0.25
>    turbulence 0.9
>    omega 0.75 octaves 4 lambda 2.5
>    rotate y * 45
>   ]
>  }
> }
>
> Enjoy!
> Michael
>
> --
> #macro M(D)#local J=strlen(D);#local _=""#while(J>0)#local
_=concat(_,substr(D
> ,J,1))#local J=J-1;#end _#end sphere{z*9,5pigment{rgb x}}#macro
N(D,J)text{ttf
> "timrom.ttf"M(D)1,0 translate-J}#end#macro O(E,K)#local
_=N(E,K)light_source{-
> z*9rgb 1projected_through{_}}#end
O("leahciM"<1.6,-.3.9>)O("nosnhoJ"<1.6.9.9>)
>
>
>


Post a reply to this message

From: Redbeard (MDJohnson)
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 19:13:15
Message: <3bd2050b$1@news.povray.org>
"Tony[B]" <ben### [at] catholicorg> wrote in message
news:3bd1cec0@news.povray.org...
> Pretty. Looks like a milky plastic.
>
>

Thanks!

I guess it does, kinda.  A lot of that comes from the reflection of the
sky_sphere, I think.  The texture on the "sunflower" is:

texture
{
  pigment { Gold * (mod(A, 0.5) + 0.5) }
  finish { Shiny reflection 0.7 }
}

where A is the current angle within the sunflower, ranging from 0 to
radians(160000).  Yes, there's 160,000 degrees of sunflower there :-)

Michael

--
#declare R=<8,4,.6>/3;#declare C=function{pattern{object{text{ttf"crystal.ttf"
"MDJ"1,0translate-R/4}}}}camera{location-z*30}box{-R,R pigment{rgbf 1}interior
{media{emission.1density{function{C(x,y,z)}density_map{[0mandel 50color_map{[0
rgb 0][.2rgb x][1rgb x+y]}interior 1,1.5scale 60translate<-33.75,2.85>exponent
4][1rgb<2,2>]}}}}scale 24hollow}// (c) 2001 MDJohnson red### [at] wvadelphianet


Post a reply to this message

From: Rune
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 19:26:45
Message: <3bd20835@news.povray.org>
This is very beautiful! :)

I like the warm textures.

Rune
--
3D images and anims, include files, tutorials and more:
Rune's World:    http://rsj.mobilixnet.dk (updated June 26)
POV-Ray Users:   http://rsj.mobilixnet.dk/povrayusers/
POV-Ray Webring: http://webring.povray.co.uk


Post a reply to this message

From: Redbeard (MDJohnson)
Subject: Re: Twisted Sunflower (~99kbu)
Date: 20 Oct 2001 22:26:37
Message: <3bd2325d@news.povray.org>
"JRG" <jrg### [at] hotmailcom> wrote in message news:3bd1fb78@news.povray.org...
> Thank you.
>
> --

You're welcome

Michael


Post a reply to this message

Goto Latest 10 Messages Next 10 Messages >>>

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