POV-Ray : Newsgroups : povray.binaries.images : Absent Server Time
6 Aug 2024 19:28:40 EDT (-0400)
  Absent (Message 2 to 11 of 11)  
<<< Previous 1 Messages Goto Initial 10 Messages
From: o bb spammed
Subject: Re: Absent
Date: 28 Nov 2006 13:40:00
Message: <web.456c81a72f598490bc81efaa0@news.povray.org>
Here's the second one.  It's pretty abstract: The yang collaspes and the yin
rules.  In the absence of harmony, chaos overwhelms.


#version 3.6;

#include "functions.inc"

// ----------------------------------------

global_settings {
  assumed_gamma 1.0
}

#default {
 texture {
  pigment {
   color rgb 1
  }
  finish {
   ambient 0
   diffuse 1
  }
 }
}

// ----------------------------------------

camera {
 location <0.0, 1.0, 0.0>
 direction 1.5*z
 right x*image_width/image_height
 look_at <0.0, 0.0,  0.0>

 aperture .6
 variance 1/1000000
 confidence 0.9
 blur_samples 100
 focal_point <0, -0.24, 0>
}

// ----------------------------------------

light_source {
 <0.0, 2.8, 0.0>
 color rgb 0.5
 fade_distance 3.75
 fade_power 100
}

light_source {
 <0.0, 1.0, 0.0>
 color rgb 0.5
 fade_distance 1.3
 fade_power 50
}

// ----------------------------------------

// A wave plane to see the shadow
plane {
 y, -0.95
 texture {
  pigment {
   color rgb <0.8, 0.8, 1.0>
  }

  normal {
   waves
   scale <.1, 1, .1>
  }
  finish {
   phong 2
   phong_size 1
  }

 }
}

// ----------------------------------------

// The yang
sphere {
 <0, -0.5, 0>
 0.2
 texture {
  pigment {
   color rgb <1, 1, 1>
  }
 }
}

// ----------------------------------------

// The yin shadow
union
{
isosurface {
 function{ f_comma( x,y,z, 1) }
 contained_by {sphere { 0, 1.5 } }
 scale <.1, .05, .1>
 rotate <0, -90, 0>
 translate <0, 2, 0>
 pigment { color rgb 1 }
}

sphere {
 <0, 0, -.05>
 .02
 translate <0, 2, 0>
}

torus {
 .1, .01
 translate <0, 2, 0>
}
}


Post a reply to this message


Attachments:
Download 'absent_yang.jpg' (59 KB)

Preview of image 'absent_yang.jpg'
absent_yang.jpg


 

From: Orchid XP v3
Subject: Re: Absent
Date: 28 Nov 2006 13:52:54
Message: <456c8586$1@news.povray.org>
Oh, very cleaver... nice.


Post a reply to this message

From: o bb spammed
Subject: Re: Absent
Date: 28 Nov 2006 15:35:01
Message: <web.456c9d0b2f598490bc81efaa0@news.povray.org>
Oops, forgot the last absent image.  Sphere over checkered plane.



#version 3.6;

#include "metals.inc"

#declare arealight_on = true;

// ----------------------------------------

global_settings {
 assumed_gamma 1.0
}

#default {
 texture {
  pigment {
   color rgb 1
  }
  finish {
   ambient 0
   diffuse 1
  }
 }
}

// ----------------------------------------

camera {
  location  <-1.0, 1.0, -2.0>
  direction 1.5*z
  right     x*image_width/image_height
  look_at   <0.0, 0.0,  0.0>
}

light_source {
  <1, 2, -1>
  color rgb 0.5

  fade_distance 4
  fade_power 10

  #if (arealight_on = true)
    area_light
    <0.3, 0, 0>, <0, 0, 0.3>
    10, 10
    circular
    orient
  #end

}

// ----------------------------------------

#declare tile=
superellipsoid {
 <0.5, 0.5>
 scale <0.12, 0.1, 0.12>
 translate <0, -0.1, 0>
}

#declare i = -5;
#while (i < 40)
 #declare j = -7;
 #while (j < 40)
  object {
   tile
   translate <0.2*i, 0, 0.2*j>
   #if (mod( i+j,2 ) = 0)
    texture {
     pigment {
      color rgb <0.9, 0.9, 0.9>
     }

     finish {
      phong 1
      phong_size 10
     }
    }
   #else
    texture {
     pigment {
      color rgb <0.0, 0.0, 0.0>
     }

     finish {
      phong 1
      phong_size 20
     }
    }
   #end
  }

  #declare j = j+1;
 #end

 #declare i = i+1;
#end

// ----------------------------------------

#declare t2 =
texture {
 pigment {
  color rgbft <1.0, 1.0, 1.0, 0.0, 1.0>
 }
}

sphere {
 <-0.1, 0.4, -0.2>, 0.2

 texture {
  gradient y
  scale 0.4
  translate 0.2

  texture_map {
   [0.0 T_Silver_1A]
   [0.2 T_Silver_1A]
   [0.4 t2]
   [1.0 t2]
  }
 }
}


Post a reply to this message


Attachments:
Download 'missing_sphere.jpg' (153 KB)

Preview of image 'missing_sphere.jpg'
missing_sphere.jpg


 

From: nemesis
Subject: Re: Absent
Date: 28 Nov 2006 21:10:01
Message: <web.456cebe42f598490e6c380e70@news.povray.org>
the first one is very nice and subtle.  One of the IRTC entries used the
same empty space idea and the very word.  Still, between that and this, i
feel this one has a lot more empty spaceness going for it... :)


Post a reply to this message

From: o bb spammed
Subject: Re: Absent
Date: 29 Nov 2006 11:25:00
Message: <web.456db3812f598490bc81efaa0@news.povray.org>
"nemesis" <nam### [at] gmailcom> wrote:
> the first one is very nice and subtle.  One of the IRTC entries used the
> same empty space idea and the very word.  Still, between that and this, i
> feel this one has a lot more empty spaceness going for it... :)

:o)


Post a reply to this message

From: Sven Littkowski
Subject: Re: Absent
Date: 29 Nov 2006 21:16:12
Message: <456e3eec$1@news.povray.org>
Interesting.

Sven


Post a reply to this message

From: Ben Chambers
Subject: Re: Absent
Date: 30 Nov 2006 19:30:04
Message: <456f778c$1@news.povray.org>
o.bb.spammed wrote:
> Here's the second one.  It's pretty abstract: The yang collaspes and the yin
> rules.  In the absence of harmony, chaos overwhelms.

Oh goodie, I have a new desktop wallpaper :)

...Chambers


Post a reply to this message

From: Reuben Pearse
Subject: Re: Absent
Date: 5 Dec 2006 08:01:48
Message: <45756dbc$1@news.povray.org>
Nice image!

If you add some sparkles, and changed the blocks to starry shapes, it 
would make an excellent Christmas rendering!

Reuben
reu### [at] pslconnectcom


Post a reply to this message

From: o bb spammed
Subject: Re: Absent
Date: 5 Dec 2006 15:00:00
Message: <web.4575cfa02f598490bc81efaa0@news.povray.org>
Reuben Pearse <reu### [at] pslconnectcom> wrote:
> Nice image!
>
> If you add some sparkles, and changed the blocks to starry shapes, it
> would make an excellent Christmas rendering!
>
> Reuben
> reu### [at] pslconnectcom

Fun idea.  Something like this maybe?  Needs the proper stars still.


Post a reply to this message


Attachments:
Download 'noel.jpg' (64 KB)

Preview of image 'noel.jpg'
noel.jpg


 

From: Orchid XP v3
Subject: Re: Absent
Date: 6 Dec 2006 15:58:13
Message: <45772ee5$1@news.povray.org>
Oh hey, that's nice...


Post a reply to this message

<<< Previous 1 Messages Goto Initial 10 Messages

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