mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Existing OCCT path tracing engine used very simple additive material (BSDF) model, so it was possible to reproduce behavior only of very basic materials such as metal, glass, or plastic. However, some important in CAD industry materials like car paint or ceramic could not be modeled well. In this patch, OCCT BSDF was significantly improved by replacing additive model with two-layered scattering model. Therefore, we have base diffuse, glossy, or transmissive layer, covered by one glossy/specular coat. The layers themselves have no thickness; they can simply reflect light or transmits it to the layer under it. Balancing different combinations of layer properties can produce a wide range of different effects. At the same time, disabling the first (coat) layer allows to keep full compatibility with previously supported scattering model. All new parameters are available via 'vbsdf' command. Location of new sample for few material examples: samples\tcl\pathtrace_materials.tcl Fix shader compilation issue. Fix test case sample_ball_alpha. Shaders_PathtraceBase_fs.pxx - regenerate resource from origin
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
puts "============"
|
|
puts "Visualization - Path Tracing, Ball sample"
|
|
puts "============"
|
|
puts ""
|
|
|
|
source $env(CSF_OCCTSamplesPath)/tcl/pathtrace_ball.tcl
|
|
|
|
vtexture ball 21 -scale 0.1 0.1
|
|
vsetmaterial ball plaster
|
|
vbsdf ball -coatFresnel Constant 0.0
|
|
|
|
vfps 100
|
|
vdump $imagedir/${casename}_zoom.png
|