POV-Ray : Newsgroups : povray.binaries.images : electron microscope-like effect (152 k) : electron microscope-like effect (152 k) Server Time
8 Aug 2024 08:11:22 EDT (-0400)
  electron microscope-like effect (152 k)  
From: helge h
Date: 1 Aug 2005 16:30:01
Message: <web.42ee8574fa1babc58072d1170@news.povray.org>
Just a quick test of an idea I had on how to make this effect in POV-Ray; by
placing a number of lights evenly around in a circle;

#local N = 12; // number of lights
#local I = 0;
#while (I < N)
 light_source {
  <0, 500, 50> // (note the z distance)
  color <1, 1, 1> * 7.5 / N // adjust strength
  parallel
  point_at <0, 0, 0>
  shadowless
  rotate z * I * 360 / N
 }
 #local I = I + 1;
#end

Black background, and black fog to give more illusion of distance.

H


Post a reply to this message


Attachments:
Download 'elmicro.jpg' (149 KB)

Preview of image 'elmicro.jpg'
elmicro.jpg


 

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