POV-Ray : Newsgroups : povray.binaries.images : IRTC-WIP take 7 (near final- 240 kb) : Re: IRTC-WIP take 7 (near final- 240 kb) Server Time
18 Aug 2024 10:19:43 EDT (-0400)
  Re: IRTC-WIP take 7 (near final- 240 kb)  
From: JRG
Date: 22 Jun 2001 15:51:07
Message: <3b33a1ab@news.povray.org>
You meant something like this?

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

#version unofficial megapov 0.7;

global_settings {
ambient_light 0
radiosity {}
ini_option "+qr"
}

box {-1,1
scale 12
pigment {rgb 1}}

light_source {
<0,0,0>
rgb 0.7}

#declare oggetto=0;  // 0 sphere_sweep, 1 torus

#if (!oggetto)
sphere_sweep {
catmull_rom_spline_sphere_sweep
6,
<1,0,0>,.1
<0,0,1>,.1
<-1,0,0>,.1
<0,0,-1>,.1
<1,0,0>,.1
<0,0,1>,.1
pigment {rgb x+y}
scale 2
translate -y}    //if you close the spline the effect is reduced...

#else

torus {1,0.1
pigment {rgb x+y}
scale 2
translate -y}

#end

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


Post a reply to this message

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