Class TPathTracer
Unit
Declaration
type TPathTracer = class(TRayTracer)
Description
Path tracer. See [https://castle-engine.io/vrml_engine_doc/output/xsl/html/section.path_tracer.html] for documentation.
Hierarchy
- TObject
- TRayTracer
- TPathTracer
Overview
Fields
MinDepth: Integer; |
|
RRoulContinue: Single; |
|
PrimarySamplesCount: Cardinal; |
|
NonPrimarySamplesCount: Cardinal; |
|
DirectIllumSamplesCount: Cardinal; |
|
SFCurveClass: TSpaceFillingCurveClass; |
Methods
procedure AppendStats(const Stats: TStrings; const RenderingTime: Single); override; |
|
constructor Create; |
|
procedure Execute; override; |
Description
Fields
MinDepth: Integer; |
|
See [https://castle-engine.io/rayhunter.php] documentation about "<recursion-depth>" and --r-roul-continue for suggestions about how to use these parameters. See also [https://castle-engine.io/raytr_gallery.php] for some experiments with these values. RRoulContinue must be in 0..1 range. You can give RRoulContinue = 0 if you don't want to use Russian roulette at all (works OK because our comparison Small RRoulContinue values cause a lot of noise. Large RRoulContinue values cause long rendering.
|
RRoulContinue: Single; |
|
This item has no description. |
PrimarySamplesCount: Cardinal; |
|
How many paths to use. Both must be > 0.
NonPrimarySamplesCount is the number of paths caused by each hit of a primary ray. This is the main quality control for the path-tracer, more paths mean that colors are gathered from more random samples, which means that final color is more accurate. In total you have pixels count * |
NonPrimarySamplesCount: Cardinal; |
|
How many paths to use. Both must be > 0. PrimarySamplesCount tells how many paths are used for primary ray, and is really useful only for anti-aliasing. You can set this to a few. Values above ~10 are useless, they cause much longer rendering without really improving the result. You can set this to 1 if you don't need anti-aliasing.
|
DirectIllumSamplesCount: Cardinal; |
|
How many samples are used to calculate direct illumination at every path point. These are rays sent into random points of random light sources, to test if given light shines here. Set this to 0 to have a really naive path-tracing, that wanders randomly hoping to hit light source by chance. This will usually need an enormous amount of PrimarySamplesCount * NonPrimarySamplesCount to given any sensible results. Set this to 1 or more for a normal path-tracer. |
Methods
procedure AppendStats(const Stats: TStrings; const RenderingTime: Single); override; |
|
This item has no description. |
constructor Create; |
|
This item has no description. |
procedure Execute; override; |
|
This item has no description. Showing description inherited from TRayTracer.Execute. Do ray-tracing, writing a ray-traced image into the Image. |
Generated by PasDoc 0.16.0-snapshot.