POV-Ray : Newsgroups : povray.binaries.images : Death of a Cliche ... (52Kb BU) Server Time
16 Aug 2024 00:20:32 EDT (-0400)
  Death of a Cliche ... (52Kb BU) (Message 1 to 10 of 11)  
Goto Latest 10 Messages Next 1 Messages >>>
From: Michael Andrews
Subject: Death of a Cliche ... (52Kb BU)
Date: 17 Apr 2002 10:15:37
Message: <3CBD85A6.7AB5B41D@reading.ac.uk>
<voice class="panic">
ARGHHHH!! HELP!! 

The PoV-Ray Proximity Viruses are escaping from the Vault beneath the
Infinite Checkered Plain!! Can anything save the venerable Chrome
Sphere, stalked by such a menace?!? All is lost ... all is looossst ...
</voice>

Mike Andrews.


Post a reply to this message


Attachments:
Download 'proximity3.jpg' (53 KB)

Preview of image 'proximity3.jpg'
proximity3.jpg


 

From: Defective
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 17 Apr 2002 12:44:41
Message: <3cbda679$1@news.povray.org>
Those "Viruses" are too reflective...

Still made it to my wallpaper collection tho

Scott

"Michael Andrews" <m.c### [at] readingacuk> wrote in message
news:3CBD85A6.7AB5B41D@reading.ac.uk...
> <voice class="panic">
> ARGHHHH!! HELP!!
>
> The PoV-Ray Proximity Viruses are escaping from the Vault beneath the
> Infinite Checkered Plain!! Can anything save the venerable Chrome
> Sphere, stalked by such a menace?!? All is lost ... all is looossst ...
> </voice>
>
> Mike Andrews.


----------------------------------------------------------------------------
----


Post a reply to this message

From: Michael Andrews
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 17 Apr 2002 13:02:13
Message: <3CBDACB3.2B4ADB49@reading.ac.uk>
Defective wrote:
> 
> Those "Viruses" are too reflective...
> 
Well, a quick analysis shows that all the new features in v3.5 caused
the copper interconnects to melt and start mutating ... ;-)

> Still made it to my wallpaper collection tho
> 
Glad you like it.

> Scott
> 

Bye for now,
	Mike Andrews.


Post a reply to this message

From: Shay
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 17 Apr 2002 13:49:22
Message: <3cbdb5a2$1@news.povray.org>
That is damn different, Michael.

 -Shay

Michael Andrews <m.c### [at] readingacuk> wrote in message
news:3CBD85A6.7AB5B41D@reading.ac.uk...


Post a reply to this message

From: Peter Hertel
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 17 Apr 2002 16:49:26
Message: <3cbddfd6@news.povray.org>
Very artistic, funny, new!
Love it where the virus goes through the plane, how did you do that? is the
plane really a height_field?

-Peter

> <voice class="panic">
> ARGHHHH!! HELP!!
>
> The PoV-Ray Proximity Viruses are escaping from the Vault beneath the
> Infinite Checkered Plain!! Can anything save the venerable Chrome
> Sphere, stalked by such a menace?!? All is lost ... all is looossst ...
> </voice>
>
> Mike Andrews


Post a reply to this message

From: Michael Andrews
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 18 Apr 2002 05:07:56
Message: <3CBE8F0D.38A79D1B@reading.ac.uk>
Hi Peter,

Peter Hertel wrote:
> 
> Very artistic, funny, new!

Thanks :-)

> Love it where the virus goes through the plane, how did you do that? is the
> plane really a height_field?
> 
An interstection of unions of plane and heightfield ... well, here's the
code for the plain. I'll post the source for the image if there's
interest.

Bye for now,
	Mike Andrews.

#declare Plane = union { 
  plane{ y, 0 }
  height_field {
    function 200,200 {
      pigment {
        cylindrical poly_wave 3 rotate 90*x translate 1 scale 0.5 
      }
    }
    translate -<0.5,0,0.5>
    scale <40,10,40>
  }
}

difference {
  object { Plane }
  object { Plane translate -y }
  height_field {
    function 400,400 {
      pigment {
        cylindrical poly_wave 3 
        pigment_map {
          [0.1 rgb 0]
          [0.5 radial frequency 7 colour_map {[0 rgb 1][0.1 rgb 0][0.9
rgb 0][1 rgb 1] } ]
          [1 rgb 1]
        }
        scale 5
        warp { turbulence 0.5 }
        scale 1/5
        rotate 90*x translate 1 scale 0.5
      }
    }
    translate -<0.5,0,0.5>
    scale -<60,10,60>
    translate 10*y
  }
  scale 2
  
  #declare pigPov = pigment { object { text{ttf"povlogo""P"9 0} colour
rgb 0, rgb 1 } translate -3*z rotate 90*x } 
  
  pigment{
    pigment_pattern {
      pigPov 
      translate x 
      warp {repeat 2*x} 
      warp {repeat sin(radians(60))*2*z offset x} 
      warp {repeat y} 
      scale 2
    }
    pigment_map {
      [0.5
        pigment_pattern { checker rgb 0, rgb 1 translate -0.5 scale
<7,100,7> }
        pigment_map {
          [0.5 cylindrical scale 20 colour_map {[0 rgb 0][0.5 rgb
<.9,.9,1> ][1 rgb 0.7]} ]
          [0.5 cylindrical scale 20 colour_map {[0 rgb 1][0.5 rgb
<.8,.8,.9>][1 rgb 0.7]} ]
        }
      ]
      [0.5
        pigment_pattern { checker rgb 0, rgb 1 translate -0.5 scale
<7,100,7> }
        pigment_map {
          [0.5 cylindrical scale 20 colour_map {[0 rgb 0][0.45 rgb
x][0.9 rgb 0.7]} ]
          [0.5 cylindrical scale 20 colour_map {[0 rgb 1][0.45 rgb
x][0.9 rgb 0.7]} ]
        }
      ]
    }
    translate <5,0,20>-<-20,0,80>
    warp { black_hole <5,0,20>-<-20,0,80>, 20 strength 2 falloff 4 }
  }
  finish{diffuse 1 ambient 0}
  translate -6*y
  translate <-20,0,80>
}


Post a reply to this message

From: Dearmad
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 19 Apr 2002 11:05:02
Message: <3CC03345.6D5A016C@applesnake.net>
excellent!  great work.

-peter
-- 
Story board slave for:
"Ballet pour ma fille."
http://www.applesnake.net


Post a reply to this message

From: Defective
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 19 Apr 2002 22:25:24
Message: <3cc0d194@news.povray.org>
"Michael Andrews" <m.c### [at] readingacuk> wrote in message
news:3CBE8F0D.38A79D1B@reading.ac.uk...
> >
> An interstection of unions of plane and heightfield ... well, here's the
> code for the plain. I'll post the source for the image if there's
> interest.

Please

(with sugar on top if needed...)

Scott


Post a reply to this message

From: Michael Andrews
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 22 Apr 2002 05:06:32
Message: <3CC3D4A0.2A2E86EC@reading.ac.uk>
Hi Scott,

Defective wrote:
> Please
> 
OK, posted on p.b.s-f.

> (with sugar on top if needed...)
> 
Damn! I should have held out for chocolate icing at least ... ;-)

> Scott

Bye for now,
	Mike Andrews.


Post a reply to this message

From: Defective
Subject: Re: Death of a Cliche ... (52Kb BU)
Date: 23 Apr 2002 12:40:14
Message: <3cc58e6e$1@news.povray.org>
COOL!

OK...chocolate icing...

Scott

"Michael Andrews" <m.c### [at] readingacuk> wrote in message
news:3CC3D4A0.2A2E86EC@reading.ac.uk...
> Hi Scott,
>
> Defective wrote:
> > Please
> >
> OK, posted on p.b.s-f.
>
> > (with sugar on top if needed...)
> >
> Damn! I should have held out for chocolate icing at least ... ;-)
>
> > Scott
>
> Bye for now,
> Mike Andrews.


Post a reply to this message

Goto Latest 10 Messages Next 1 Messages >>>

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