mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The purpose of this functionality is to bring a basic ray-tracing solution to existing OCCT visualization toolkit (TKOpenGL). Currently ray-tracing visualization core supports sharp shadows, specular reflections, transparency and adaptive anti-aliasing. However, the basis for all ray-tracing algorithms is versatile, allowing you to add new ray-tracing features easily (such as ambient occlusion). All ray-tracing computations are performed on the GPU using OpenCL framework, allowing real-time rendering performance. It is important to note, that real-time ray-tracing is possible using high-performance GPUs with support of OpenCL 1.1 and higher (such as NVIDIA GeForce 660 or ATI/AMD Radeon 7850). When using low-end GPUs (such as NVIDIA GeForce 640) the ray-tracing performance may slow down significantly. Therefore, even with NVIDIA GeForce 640 you can render scenes with the millions of triangles. The support of OpenCL-enabled CPUs and integrated graphics cards is not guaranteed.
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
puts "TODO OCC24130 Debian60-64: OCCT was compiled without OpenCL support!"
|
|
puts "TODO OCC24130 Windows: TKOpenGl | Type\: Error | ID\: 0 | Severity\: High | Message\:"
|
|
|
|
puts "========"
|
|
puts "OCC24130 Implementing ray tracing visualization core"
|
|
puts "========"
|
|
|
|
# custom shapes
|
|
set aShape1 [locate_data_file occ/Top.brep]
|
|
set aShape2 [locate_data_file occ/Bottom.brep]
|
|
|
|
# setup 3D viewer content
|
|
vinit name=View1 w=512 h=512
|
|
vglinfo
|
|
|
|
vvbo 0
|
|
vsetdispmode 1
|
|
vsetgradientbg 180 200 255 180 180 180 2
|
|
restore $aShape1 s1
|
|
restore $aShape2 s2
|
|
vdisplay s1 s2
|
|
vsetmaterial s1 Silver
|
|
vsetmaterial s2 Pewter
|
|
vfit
|
|
|
|
# activate ray-tracing
|
|
vraytrace 1
|
|
vclinfo
|
|
|
|
set aModeNum 0
|
|
for { set aAAMode 0 } { $aAAMode <= 1 } { incr aAAMode } {
|
|
for { set aReflMode 0 } { $aReflMode <= 1 } { incr aReflMode } {
|
|
for { set aShadMode 0 } { $aShadMode <= 1 } { incr aShadMode } {
|
|
vsetraytracemode shad=$aShadMode refl=$aReflMode aa=$aAAMode
|
|
vdump $imagedir/${casename}_${aModeNum}.png
|
|
incr aModeNum
|
|
}
|
|
}
|
|
}
|
|
|
|
vtextureenv on 5
|
|
for { set aAAMode 0 } { $aAAMode <= 1 } { incr aAAMode } {
|
|
for { set aShadMode 0 } { $aShadMode <= 1 } { incr aShadMode } {
|
|
vsetraytracemode shad=$aShadMode refl=1 aa=$aAAMode
|
|
vdump $imagedir/${casename}_${aModeNum}.png
|
|
incr aModeNum
|
|
}
|
|
}
|