1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0024587: Separate TCL samples for ray tracing and creation of bottle

New sample created for ray tracing in DRAW: samples/tcl/raytrace.tcl, rendering OCCT bottle with glass on a rectangular table, with shadows and reflections (if OpenCL is available). Sample bottle.tcl retains only modeling part.
This commit is contained in:
abv 2014-02-03 10:21:23 +04:00 committed by apn
parent 8b1ad7e012
commit 124021462e
2 changed files with 39 additions and 9 deletions

View File

@ -112,12 +112,3 @@ puts "Showing result..."
vdisplay bottle
vfit
vsetdispmode 1
# set ray tracing
if { [regexp {HAVE_OPENCL} [dversion]] } {
puts "Trying raytrace mode..."
if { ! [catch {vraytrace 1}] } {
vtextureenv on 1
vfit
}
}

39
samples/tcl/raytrace.tcl Normal file
View File

@ -0,0 +1,39 @@
# Script reproducing creation of bottle model as described in OCCT Tutorial
# make bottle by calling another script
source [file join [file dirname [info script]] bottle.tcl]
# make table and a glass
box table -50 -50 -10 100 100 10
pcone glass_out 7 9 25
pcone glass_in 7 9 25
ttranslate glass_in 0 0 0.2
bcut glass glass_out glass_in
ttranslate glass -30 -30 0
# show table and glass
vsetmaterial bottle aluminium
vdisplay table
vsetmaterial table bronze
vsetmaterial table plastic
vsetcolor table coral2
vdisplay glass
vsetmaterial glass plastic
vsetcolor glass brown
vsettransparency glass 0.6
# add light source for shadows
vlight new spot pos -100 -100 300
# set white background and fit view
vsetcolorbg 255 255 255
vfit
# set ray tracing
if { [regexp {HAVE_OPENCL} [dversion]] } {
puts "Trying raytrace mode..."
if { ! [catch {vraytrace 1}] } {
vtextureenv on 1
vsetraytracemode shad=1 refl=1 aa=1
}
}