mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
gp_Trsf::SetRotationPart() - added method replacing rotation matrix without reseting other components, similar to existing SetTraslationPart() and SetScaleFactor(). Transformation multiplication order has been fixed for vlocation arguments -rotate, -translate, -mirror and -scale. Added -prerotate, -pretranslate, -premirror and -prescale options following previous behavior. vlocation -setRotation now uses new method gp_Trsf::SetRotationPart() for consistency with methods -setLocation and -setScale.
72 lines
1.2 KiB
Plaintext
72 lines
1.2 KiB
Plaintext
puts "========"
|
|
puts "OCC25221"
|
|
puts "========"
|
|
##########################################
|
|
## Visualization - Depth test errors in ray-tracing scene containing face outlines
|
|
##########################################
|
|
|
|
# custom shapes
|
|
set aShape [locate_data_file occ/Bottom.brep]
|
|
|
|
# setup 3D viewer content
|
|
vinit name=View1 w=512 h=512
|
|
|
|
vsetdispmode 1
|
|
restore $aShape s
|
|
vdisplay s
|
|
vfit
|
|
|
|
# activate ray-tracing
|
|
vrenderparams -raytrace
|
|
|
|
# highlight the shape
|
|
vmoveto 200 200
|
|
|
|
vdump $imagedir/${casename}_lines_closeup.png
|
|
|
|
vzoom 0.5
|
|
|
|
vdump $imagedir/${casename}_lines_far.png
|
|
|
|
vfit
|
|
|
|
# change camera to perspective
|
|
vcamera -persp
|
|
|
|
# change highlight display mode
|
|
vdisplay s -highMode 1
|
|
|
|
# highlight the shape again
|
|
vmoveto 0 0
|
|
vmoveto 200 200
|
|
|
|
vdump $imagedir/${casename}_faces_closeup.png
|
|
|
|
# apply transformation
|
|
vlocation s -reset -translate -30 0 0 -rotate 0 0 0 0 0 1 10
|
|
vmoveto 0 0
|
|
vmoveto 200 200
|
|
|
|
vdump $imagedir/${casename}_faces_closeup_rotated.png
|
|
|
|
vlocation s -reset
|
|
vmoveto 0 0
|
|
vmoveto 200 200
|
|
|
|
vzoom 0.5
|
|
|
|
vdump $imagedir/${casename}_faces_far.png
|
|
|
|
# enable Path tracing
|
|
vrenderparams -gi
|
|
vfit
|
|
vfps 100
|
|
|
|
vdump $imagedir/${casename}_faces_pt.png
|
|
|
|
# rotate camera
|
|
vrotate 0 0.2 0
|
|
vfps 100
|
|
|
|
vdump $imagedir/${casename}_faces_pt_rot.png
|