POV-Ray : Newsgroups : povray.binaries.images : $#!!@ Photons! Arrrrggghhh! Server Time
13 Aug 2024 07:25:19 EDT (-0400)
  $#!!@ Photons! Arrrrggghhh! (Message 1 to 5 of 5)  
From: Alan Walkington
Subject: $#!!@ Photons! Arrrrggghhh!
Date: 4 Apr 2003 20:35:16
Message: <3e8e32d4@news.povray.org>
I am trying to emulate an optics table.  I need narrow cylindrical beams of
light, that reflect off mirrors and refract through lenses and interact with
the media in a 'fog box'. I am /almost/ there.

I've tried everything I can think of to get a laser beam effect that has
photon interaction with media. The following works, but /only/ with a
spotlight.  When I use a cylindrical light, the refracted (or reflected)
photons stop interacting with the media.  Any ideas?

BTW, the parallel modifier causes /all/ the media to light up. Sigh.

My understanding is shrinking along with any ego I might have previously
possessed. My wife is going home to mama.  My mortgage is in arrears. My
hair is gone. I giggle a lot, then burst into uncontrolled tears. I am
hopelessly addicted.
--------------------------------------
#version 3.5;

#include "colors.inc"
#include "textures.inc"

global_settings {
  assumed_gamma 1
  max_trace_level 25

  photons {
    spacing 0.03
    media 100
    autostop 0
    jitter 0
  }
}

light_source {
    <0, 30, 0> *2
    color White * 1
}

camera {
    orthographic
    location <0,17,0>
    look_at <0,0,0>
}

box { // fog box
    <-9,-2,-9>,<9,2,9>
    pigment { White filter 1 }
    hollow on
    photons {pass_through}
    interior{
        media {
        scattering { 1, rgb 0.03}
        intervals 1
        samples 5
        method 3
        }

    }
}

    light_source {  //spotlight
        0*x
        color Green * 3
        //cylinder
        spotlight
        translate <-15,.5,4>
        point_at <0,.5,4>
        radius 1
        tightness 90
        falloff 5
        photons {
            refraction on
            reflection on
        }
    }

intersection {// lens
    intersection {
        sphere {
            <0, 4.95, 0>, 5
        }
        sphere {
            <0, -4.95, 0>, 5
        }
        scale <1,1,1> * 8
    }
    cylinder {
        <0, 3, 0>,
        <0, -3, 0>,
        7.0
    }
    material {
      M_NB_Glass
    }
    photons {
        target
        refraction on
        reflection off
    }

    rotate z*90
    translate -x * 7
}

--------------------------------------

Alan Walkington


Post a reply to this message


Attachments:
Download 'lasers.JPG' (4 KB)

Preview of image 'lasers.JPG'
lasers.JPG


 

From: Børge Berg-Olsen
Subject: Re: $#!!@ Photons! Arrrrggghhh!
Date: 4 Apr 2003 22:40:22
Message: <3E8E502D.17570773@dod.no>
Alan Walkington wrote:
> 
> I am trying to emulate an optics table.  I need narrow cylindrical beams of
> light, that reflect off mirrors and refract through lenses and interact with
> the media in a 'fog box'. I am /almost/ there.

Use a point light, put it into a slotted box. That's what I did.

-- 

------------------------------------------------------------------------
 +47 90 62 71 78          DoD#2101, DoDRT#017, NIC#015, PJ#006, OGM#007
 azo### [at] dodno, Ducati M600, Audi 100 2.3E Ubesudlet: Aldri eid en J&%#PS


Post a reply to this message

From: Alan Walkington
Subject: Re: $#!!@ Photons! Arrrrggghhh!
Date: 5 Apr 2003 02:22:31
Message: <3e8e8437@news.povray.org>
"Alan Walkington" <alan[REMOVE]@walkington.net> wrote in message
news:3e8e32d4@news.povray.org...

> I've tried everything I can think of to get a laser beam effect that has
> photon interaction with media. The following works, but /only/ with a
> spotlight.  When I use a cylindrical light, the refracted (or reflected)
> photons stop interacting with the media.  Any ideas?

This sucks. I've got a sort of usable laser effect by sticking a point light
insde the closed end of a veeery looong cylindar open at the far end.  The
results are adequate, but its /very/ difficult to manouver. (A quick aside
... How is the center of rotation computed?)
-------------------
#declare GreenLaser = union {
    difference {
        cylinder {
            <-1,0,0>
            <60,0,0>
            .3
        }
        cylinder {
            <-.9,0,0>
            <60.1,0,0>
            .2
        }
    }
    light_source {
        <0.0.0 >
        color Green *20
    }
    texture {Polished_Chrome}
}

-------------------
Alan Walkington


Post a reply to this message


Attachments:
Download 'laser2.JPG' (53 KB)

Preview of image 'laser2.JPG'
laser2.JPG


 

From: gonzo
Subject: Re: $#!!@ Photons! Arrrrggghhh!
Date: 5 Apr 2003 15:21:18
Message: <3e8f3abe@news.povray.org>
Alan Walkington <alan[REMOVE]@walkington.net> wrote in message
news:3e8e8437@news.povray.org...

> (A quick aside
> ... How is the center of rotation computed?)

The center of rotation is <0,0,0>.

RG


Post a reply to this message

From: Greg Edwards
Subject: Re: $#!!@ Photons! Arrrrggghhh!
Date: 5 Apr 2003 16:49:33
Message: <jnz7p2w6kz5s$.189vcchh6xx4n$.dlg@40tude.net>


> Alan Walkington wrote:
>> 
>> I am trying to emulate an optics table.  I need narrow cylindrical beams of
>> light, that reflect off mirrors and refract through lenses and interact with
>> the media in a 'fog box'. I am /almost/ there.
> 
> Use a point light, put it into a slotted box. That's what I did.

I usually have a very distant spotlight with projected_through on some near 
object. That makes it *almost* parallel but then it's possible that POV 
might "miss" the projected_through object and shoot no photons into the 
scene at all... There's usually some happy medium though! :-)

-- 
light_source#macro G(E)sphere{z+E*y*5e-3.04rotate-z*E*6pigment{rgbt#end{
20*y-10#local n=162;1}#while(n)#local n=n-.3;G(n)x}}G(-n).7}}#end//GregE


Post a reply to this message

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