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.
30 lines
831 B
Plaintext
30 lines
831 B
Plaintext
puts "========"
|
|
puts "0030700: Visualization, TKOpenGl - support PBR Metallic-Roughness shading model"
|
|
puts "Spheres grid with different roughness values"
|
|
puts "========"
|
|
|
|
vclear
|
|
vclose ALL
|
|
source $env(CSF_OCCTSamplesPath)/tcl/vis_pbr_spheres.tcl
|
|
|
|
vcamera -ortho
|
|
vfit
|
|
vlight -change 1 -intensity 0.0001
|
|
vdump $::imagedir/${::casename}_ortho0.png
|
|
vlight -change 1 -intensity 0.3
|
|
vdump $::imagedir/${::casename}_ortho30.png
|
|
vcamera -persp
|
|
vfit
|
|
vlight -change 1 -intensity 0.0001
|
|
vdump $::imagedir/${::casename}_persp0.png
|
|
vlight -change 1 -intensity 0.3
|
|
vdump $::imagedir/${::casename}_persp30.png
|
|
|
|
set aCubeMap [locate_data_file Circus_CubeMap_V.png]
|
|
vlight -change 1 -intensity 1
|
|
vbackground -cubemap $aCubeMap
|
|
vcamera -ortho
|
|
vdump $::imagedir/${::casename}_orthoenv.png
|
|
vcamera -persp
|
|
vdump $::imagedir/${::casename}_perspenv.png
|