POV-Ray : Newsgroups : povray.binaries.images : SSLT not working so well : Re: SSLT not working so well Server Time
29 Apr 2024 23:22:36 EDT (-0400)
  Re: SSLT not working so well  
From: Mike Horvath
Date: 5 Feb 2018 15:36:52
Message: <5a78c064@news.povray.org>
On 2/5/2018 3:31 PM, Mike Horvath wrote:
> Can anyone diagnose the cause of all the dirty marks on the materials? 
> Lowering the translucency helped a lot, but I don't know if that's the 
> actual cure or something else. Thanks.
> 
> 
> Mike

Global settings:


	#if (Use_Radiosity = true)
		#include "rad_def.inc"
		global_settings
		{
			assumed_gamma	1
			adc_bailout		0.005
			max_trace_level	8
			ambient_light	0
			radiosity {Rad_Settings(Radiosity_Default, 1, 1)}
			#if (Use_SSLT = true)
				mm_per_unit		0.4
				subsurface
				{
					samples 5, 5
	//				samples 400, 40
					radiosity true
				}
			#end
		}
	#else
		global_settings
		{
			assumed_gamma	1
			adc_bailout		0.005
			max_trace_level 8
			ambient_light	1
		}
	#end


Surface finish:

   #declare lg_translucency = <0.01,0.01,0.01>;

   finish {
     ambient 0
     #if (lg_quality > 1)
       diffuse 1
       brilliance 1
       phong 1
       phong_size 40
       reflection { 0.025 falloff 1 exponent 1 }
       #if (Use_SSLT = true)
         subsurface { translucency lg_translucency }
       #end
     #end
     conserve_energy
   }


Post a reply to this message

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