mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Ray-Tracing now handles IBL and background cubemaps in similar way as PBR. Ambient light source is handled by Ray-Tracing in similar way as PBR, e.g. as coefficient for environment map (IBL) or as constant light source. Test script generating PBR spheres has been moved to Samples and now shared by PBR and Path-Tracing tests.
41 lines
939 B
Plaintext
41 lines
939 B
Plaintext
puts "========"
|
|
puts "0031225: Visualization, TKOpenGl - support cubemap for environment texture within Ray-Tracing"
|
|
puts "Spheres grid with different roughness values"
|
|
puts "========"
|
|
|
|
vclear
|
|
vclose ALL
|
|
source $env(CSF_OCCTSamplesPath)/tcl/vis_pbr_spheres.tcl
|
|
|
|
vrenderparams -ray -gi -rayDepth 10
|
|
vcamera -ortho
|
|
vfit
|
|
vlight -change 1 -intensity 0.0001
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_ortho0.png
|
|
|
|
vlight -change 1 -intensity 0.3
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_ortho30.png
|
|
|
|
vcamera -persp
|
|
vfit
|
|
vlight -change 1 -intensity 0.0001
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_persp0.png
|
|
|
|
vlight -change 1 -intensity 0.3
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_persp30.png
|
|
|
|
set aCubeMap [locate_data_file Circus_CubeMap_V.png]
|
|
vlight -change 1 -intensity 1
|
|
vbackground -cubemap $aCubeMap
|
|
vcamera -ortho
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_orthoenv.png
|
|
|
|
vcamera -persp
|
|
vfps 200
|
|
vdump $::imagedir/${::casename}_perspenv.png
|