POV-Ray : Newsgroups : povray.binaries.images : 4--- : Re: 4 Server Time
17 Apr 2024 22:41:06 EDT (-0400)
  Re: 4  
From: ingo
Date: 26 Aug 2022 07:55:00
Message: <web.6308b3c815c5dcd617bac71e8ffb8ce3@news.povray.org>
Another quick one. I's nice to have a new fast machine :)

---%<------%<------%<---
// PoVRay 3.7 Scene File " 4 .pov"
// author:  ingo
//--------------------------------------------------------------------------
// Still:
//cmd: +w1920 +h1080 +a0.05 +am2 +r4

#version 3.7;
global_settings{ assumed_gamma 1.0 }
#default{ finish{ ambient 0.1 diffuse 0.9 }}


#declare Stick = union{
    #local A = <0,1,0>;
    #local B = <0,-1,0>;
    sphere{
        A, 0.1
        texture {
            pigment { colour rgb <1,0,0>}
        }
    }
    sphere{
        B, 0.1
        texture {
            pigment { colour rgb <1,0,0>}
        }
    }
    cylinder{
        A, B, 0.01
        texture {
            pigment {colour rgb 0}
        }
    }
    //translate<-3,0,0>
}

#for (i, -6, 6, 0.05)
    object{
        Stick
        rotate<i*15 ,i, abs(i*40)>
        translate <i,i/3,0>
    }
#end

light_source{<-3,10.5,2> color rgb <0.9,0.3,.7>}
background{rgb 1}

camera {
  perspective angle 65
  location  <0 , 0 , -5.0>
  right     x*image_width/image_height
  look_at   <0.2 , 0 , 0.0>
  aperture 45
  blur_samples 80
  focal_point <0.2, 0, 0>
}

---%<------%<------%<---


Post a reply to this message


Attachments:
Download 'sticks_02.jpg' (97 KB)

Preview of image 'sticks_02.jpg'
sticks_02.jpg


 

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