POV-Ray : Newsgroups : povray.binaries.animations : Sun logo - my version Server Time
20 Jul 2024 11:26:11 EDT (-0400)
  Sun logo - my version (Message 1 to 6 of 6)  
From: Rune
Subject: Sun logo - my version
Date: 18 Feb 2001 11:51:22
Message: <3a8ffd8a@news.povray.org>
Inspired by Dennis Clarke I made my own version of the SUN logo.
Here it is - and the source code is below (it's not very long).

Hope you like it.

Rune
--
\ Include files, tutorials, 3D images, raytracing jokes,
/ The POV Desktop Theme, and The POV-Ray Logo Contest can
\ all be found at http://rsj.mobilixnet.dk (updated January 28)
/ Also visit http://www.povrayusers.org

// Sun logo version by Rune S. Johansen
#declare Clock = cos(clock*pi)/-2+0.5;
#declare W = 0.8; // Thickness of letters
#declare D = 0.8; // Depth of letters
#declare U = // A single "U"
union {
   box {<-1-W,-2,-D>,<-1+W,3+W,D>}
   box {<+1+W,-2,-D>,<+1-W,3+W,D>}
   difference {
      cylinder {-D*z,+D*z,1+W}
      cylinder {-2*z,+2*z,1-W}
      box {<-2,0,-2>,<2,2,2>}
      translate -2*y
   }
   pigment {color <1,0.8,0>}
   finish {phong 1}
   rotate 180*y*Clock
   rotate 180*x*Clock
}
#declare UU = // Two U's
union {
   object {U rotate +90*z translate -2*y}
   object {U rotate -90*z translate +2*y}
   rotate 90*z*Clock
}
#declare Sun = // The whole logo
union {
   object {UU rotate 000*z translate <-4,+4,0> rotate +180*y*Clock}
   object {UU rotate 090*z translate <+4,+4,0> rotate -180*x*Clock}
   object {UU rotate 180*z translate <+4,-4,0> rotate -180*y*Clock}
   object {UU rotate 270*z translate <-4,-4,0> rotate +180*x*Clock}
}
object {Sun rotate 45*z}
camera {location -25*z look_at 0}
background {color rgb 1}
light_source {<1,2,-3>*1000, color 1}


Post a reply to this message


Attachments:
Download 'sun.mpg' (121 KB)

From: Andy Cocker
Subject: Re: Sun logo - my version
Date: 18 Feb 2001 12:02:56
Message: <3a900040@news.povray.org>
Excellent!! :-)

--
Andy Cocker

---------------------------------------------------------------
listen to my music at:
www.mp3.com/lunarland
---------------------------------------------------------------

'I spilled spot remover on my dog. He's gone now. '
'I went to a restaurant that serves "breakfast at any time."
So I ordered french toast during the Renaissance. '

 - Steven Wright.
---------------------------------------------------------------


Post a reply to this message

From: Dennis Clarke
Subject: Re: Sun logo - my version
Date: 19 Feb 2001 09:21:23
Message: <3A912BED.65BD14CB@interlog.com>
Well there seems to be lots of fun under the Sun.  :)

Cool ... you swapped the two "U" bits while flipping them.  I read your
email from earlier and then sat down with a calculus book opened to the
section on curvilinear movement based on parametric equations.  I'm
really looking for a motion that appears random but is actually the sum
of a fourier sequence of sinusoidal movements all based on time for the
domain 0 to 1.0.  In the end I hope to get fairly "lost" looking
movement for each of the individual "U" bits as they deconstruct, wander
about and then come snapping together.  The position in space will be
the sum of the unit vectors i,j, k muliplied by the parameters.  Oh ..
and it has to be piecewise smooth with no jagged snap movements between
frames.  I figure I can always make a few frames with a light reflecting
across the thing from left to right for that glimmer look.  While
working on that you go ahead and simplify the whole thing while making
it better looking!

[ cheesy mode on ] Like I said .. fun under the Sun.  [ cheesy mode off
]

Dennis

ps: It's probably possible to make an extended array of these "U"
thingys that covers a plane like tiles.  Just a thought.  Sooner or
later I will get a cease and desist order from Sun. 


Rune wrote:
> 
> Inspired by Dennis Clarke I made my own version of the SUN logo.
> Here it is - and the source code is below (it's not very long).
> 
> Hope you like it.
> 
> Rune


Post a reply to this message

From: Rune
Subject: Re: Sun logo - my version
Date: 19 Feb 2001 13:08:48
Message: <3a916130$1@news.povray.org>
"Andy Cocker" wrote:
> Excellent!! :-)

Thanks you! :)

Rune
--
\ Include files, tutorials, 3D images, raytracing jokes,
/ The POV Desktop Theme, and The POV-Ray Logo Contest can
\ all be found at http://rsj.mobilixnet.dk (updated January 28)
/ Also visit http://www.povrayusers.org


Post a reply to this message

From: Rune
Subject: Re: Sun logo - my version
Date: 19 Feb 2001 13:08:49
Message: <3a916131$1@news.povray.org>
"Dennis Clarke" wrote:
> While working on that you go ahead and simplify the
> whole thing while making it better looking!

Gee, thanks... :)

Rune
--
\ Include files, tutorials, 3D images, raytracing jokes,
/ The POV Desktop Theme, and The POV-Ray Logo Contest can
\ all be found at http://rsj.mobilixnet.dk (updated January 28)
/ Also visit http://www.povrayusers.org


Post a reply to this message

From: Tony[B]
Subject: Re: Sun logo - my version
Date: 19 Feb 2001 19:40:17
Message: <3a91bcf1@news.povray.org>
Whoa...


Post a reply to this message

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