mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Removed testgrids 'bugs/vis' and '3rdparty'; tests have been redistributed across other grids. Moved testgrid 'v3d/ivtk' into dedicated 'vtk/ivtk'. Added testgrid 'vselect' dedicated to 3D viewer picking/selection functionality and filled with tests from 'v3d/vertex', 'v3d/face' and similar groups. Added testgrid 'opengl' dedicated to OpenGL driver low-level functionality (GLSL programs and similar) and filled with tests from 'v3d/glsl', 'v3d/raytrace', '3rdparty/fonts', 'bugs/vis' (portion) and similar. Added testgrid 'opengles3' dedicated to OpenGL ES 3.0 driver low-level functionality and reusing tests from 'opengl' testgrid. Subgroup 'opengles3/raytrace' is disabled on Windows, as Ray-Tracing currently requires OpenGL ES 3.2. while ANGLE library implements only OpenGL ES 3.0. Added testgrid 'opengles2' dedicated to OpenGL ES 2.0 driver low-level functionality and reusing a limited subset of passing tests from 'opengl' testgrid. Currently testgrid is activated only on Windows platform when using ANGLE library (properietary OpenGL ES drivers do not allow creation of restricted 2.0 context). Test cases have been cleaned out to put bug description into log, to properly load necessary plugins and to explicitly dump viewer.
72 lines
2.0 KiB
Plaintext
72 lines
2.0 KiB
Plaintext
puts "============"
|
|
puts "CR25760: Visualization - precision factor added to ZNear, ZFar in method ZFitAll() of Graphic3d_Camera is not enough"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
vinit View1 w=409 h=409
|
|
vclear
|
|
|
|
proc test2d {} {
|
|
set pix1 {135 204}
|
|
set pix2 {204 187}
|
|
|
|
for {set i 8} {$i <= 8} {incr i} {
|
|
set min_z [expr pow (-10, $i)]
|
|
set max_z [expr $min_z + 1000]
|
|
plane p1 0 0 $min_z 0 0 1
|
|
plane p2 0 0 $max_z 0 0 1
|
|
|
|
mkface f1 p1 -1 0 -1 0
|
|
mkface f2 p2 0 1 0 1
|
|
|
|
vclear
|
|
vdisplay f1 f2
|
|
vtop
|
|
vfit
|
|
|
|
for {set z [expr $max_z + 1.0]} {$z <= 1e10} {set z [expr abs ($z) * 1.2]} {
|
|
vviewparams -eye 0 0 $z
|
|
vmoveto {*}$pix1
|
|
if { [checkcolor {*}$pix1 0 1 1] != 1 } {
|
|
puts "Error: 2D projection test failed with the following parameters:"
|
|
vviewparams
|
|
vzrange
|
|
puts ""
|
|
puts "z : $z"
|
|
puts "min_z: $min_z"
|
|
puts "max_z: $max_z"
|
|
return 0
|
|
}
|
|
vmoveto {*}$pix2
|
|
if { [checkcolor {*}$pix2 0 1 1] != 1 } {
|
|
puts "Error: 2D projection test failed with the following parameters:"
|
|
vviewparams
|
|
vzrange
|
|
puts ""
|
|
puts "z : $z"
|
|
puts "min_z: $min_z"
|
|
puts "max_z: $max_z"
|
|
return 0
|
|
}
|
|
}
|
|
}
|
|
return 1
|
|
}
|
|
|
|
set tcl_precision 16
|
|
|
|
####################################################################
|
|
# Test orthographic camera without frustum culling. #
|
|
####################################################################
|
|
vcamera -ortho
|
|
vrenderparams -frustumculling off
|
|
if { [test2d] != 1 } { puts "Error: 2D projection test failed: view frustum culling is OFF" }
|
|
|
|
####################################################################
|
|
# Test orthographic camera with frustum culling. #
|
|
####################################################################
|
|
vcamera -ortho
|
|
vrenderparams -frustumculling on
|
|
if { [test2d] != 1 } { puts "Error: 2D projection test failed: view frustum culling is ON" }
|