POV-Ray : Newsgroups : povray.general : Urgent help needed with flames Server Time
6 Aug 2024 14:15:20 EDT (-0400)
  Urgent help needed with flames (Message 1 to 4 of 4)  
From: Mick Hazelgrove
Subject: Urgent help needed with flames
Date: 26 Feb 2002 11:28:05
Message: <3c7bb795@news.povray.org>
Hi All

Help this is urgent

I need a flame that will show up clearly against a lightish background problem is I
don't have time to experiment as I have a very
tight deadline to meet.

I know about using emitting media and absorption but my first attempts gave me
transparent or blue flames.

Any snippets of code that will get me moving in the right direction would be very
gratefully received.

Mick


Post a reply to this message

From: ingo
Subject: Re: Urgent help needed with flames
Date: 26 Feb 2002 12:09:34
Message: <Xns91C1B90D2C7E7seed7@povray.org>
in news:3c7bb795@news.povray.org Mick Hazelgrove wrote:

> Any snippets of code that will get me moving in the right direction
> would be very gratefully received. 


Absorbtion and emission colour shoud be opposite.

---%<------%<---
#version 3.5;
global_settings {assumed_gamma 1.0}
camera {
  location  <0.0, 0.0, -3.0>
  look_at   <0.0, 0.0,  0.0>
}
light_source {
  <500,500, -500>
  rgb <1, 1, 1> 
}
plane {
  -z,0
  pigment {checker color rgb 1 color rgb 0}
}
sphere {
  0.0, 1
  hollow
  texture {
    pigment{rgbt 1}
    finish {ambient 0 diffuse 0}
  }
  interior {
    media {
      method 3
      intervals 2
      samples 1,1 
      emission rgb <1,1,0>
      absorption rgb <0,0,1>
      density {rgb 1}
    }
  }
}
---%<------%<---


Post a reply to this message

From: Mick Hazelgrove
Subject: Re: Urgent help needed with flames
Date: 26 Feb 2002 12:34:13
Message: <3c7bc715@news.povray.org>
Thanks Ingo

I must stop thinking about colour in paint terms and start thinking about it
scientifically.

Mick

"ingo" <ing### [at] homenl> wrote in message news:Xns### [at] povrayorg...
> in news:3c7bb795@news.povray.org Mick Hazelgrove wrote:
>
> > Any snippets of code that will get me moving in the right direction
> > would be very gratefully received.
>
>
> Absorbtion and emission colour shoud be opposite.
>
> ---%<------%<---
> #version 3.5;
> global_settings {assumed_gamma 1.0}
> camera {
>   location  <0.0, 0.0, -3.0>
>   look_at   <0.0, 0.0,  0.0>
> }
> light_source {
>   <500,500, -500>
>   rgb <1, 1, 1>
> }
> plane {
>   -z,0
>   pigment {checker color rgb 1 color rgb 0}
> }
> sphere {
>   0.0, 1
>   hollow
>   texture {
>     pigment{rgbt 1}
>     finish {ambient 0 diffuse 0}
>   }
>   interior {
>     media {
>       method 3
>       intervals 2
>       samples 1,1
>       emission rgb <1,1,0>
>       absorption rgb <0,0,1>
>       density {rgb 1}
>     }
>   }
> }
> ---%<------%<---


Post a reply to this message

From: Apache
Subject: Re: Urgent help needed with flames
Date: 26 Feb 2002 20:34:34
Message: <3c7c37aa$1@news.povray.org>
I don't remember where I got it, but I found some pov code somewhere on my
hd. Check the povray.text.scene-files for the code.


Post a reply to this message

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