POV-Ray : Newsgroups : povray.text.scene-files : Maybe someone can help me ... : Re: Maybe someone can help me ... Server Time
29 Jul 2024 04:28:28 EDT (-0400)
  Re: Maybe someone can help me ...  
From: Spock
Date: 29 Dec 1999 10:33:52
Message: <386a29e0@news.povray.org>
This doesn't work either, but it might give you some ideas...

#include "colors.inc"

global_settings { assumed_gamma 2.2 }

light_source { < -20, 20, -20 > color White }

camera
{
 location < 0, 0, -10 >
 look_at < 0, 0, 0 >
}

#declare O_Ying =
union
{
    #declare R = 0;

    #while( R <= 1 )

        cylinder
        {
            < 0.0, 0.0, -0.002 >,
            < 0.0, 0.0, 0.002 >,
            R
            translate < 1.92 - R, 0, 0 >
            rotate R * R * R * 180 * z
        }

        #declare R = R + 0.01;

    #end
}

object
{
    O_Ying
    rotate -0.1 * y
    pigment { Red }
}

object
{
    O_Ying
    rotate 180 * z
    rotate 0.1 * y
    pigment { White }
}

"Paul Vanukoff" <van### [at] primenetcom> wrote in message
news:386a1908@news.povray.org...
>
> I'm trying to create a ying/yang sort of image. Here is some source that


Post a reply to this message

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