mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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.
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
puts "========"
|
|
puts "OCC223: Shading is not correct for several overlapped faces, converted to B-Spline representation"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
restore [locate_data_file OCC223-1.brep] cylinder
|
|
checkshape cylinder
|
|
restore [locate_data_file OCC223-2.brep] face
|
|
checkshape face
|
|
|
|
set Start_X 140
|
|
set Start_Y 40
|
|
|
|
vinit
|
|
tclean cylinder
|
|
tclean face
|
|
|
|
vdisplay cylinder
|
|
vdisplay face
|
|
vfit
|
|
|
|
vsetdispmode face 1
|
|
vsetcolor face GREEN1
|
|
|
|
vsetdispmode cylinder 1
|
|
vsetcolor cylinder RED1
|
|
|
|
set ColorList [vreadpixel ${Start_X} ${Start_Y} rgb]
|
|
set R_START_POINT [lindex $ColorList 0]
|
|
set G_START_POINT [lindex $ColorList 1]
|
|
set B_START_POINT [lindex $ColorList 2]
|
|
|
|
puts "R_START_POINT=$R_START_POINT ; G_START_POINT=$G_START_POINT ; B_START_POINT=$B_START_POINT"
|
|
|
|
set IsGood 1
|
|
for {set count 0} {${count} <= 11} {incr count 1} {
|
|
checkcolor $Start_X $Start_Y $R_START_POINT $G_START_POINT $B_START_POINT
|
|
if {$stat != 1} {
|
|
set IsGood 0
|
|
}
|
|
incr $Start_X 10
|
|
incr $Start_Y 10
|
|
}
|
|
|
|
if {$IsGood == 1} {
|
|
puts "\nOCC223 OK\n"
|
|
} else {
|
|
puts "\nFaulty OCC223\n"
|
|
}
|
|
|
|
vdump $imagedir/${casename}.png
|
|
|
|
puts "\n------- Additional Comments From Igor FEOKTISTOV 2002-05-20 12:32 -------\n"
|
|
|
|
puts "It is not problem of meshing."
|
|
puts "It is pure problem of shading geometrically coinciding faces with different"
|
|
puts "triangulation. If we create analytical cylinder and box by such way that plane"
|
|
puts "faces of cylinder and two faces of box are coinceded, we will have the same"
|
|
puts "result: fractional shading of coinciding faces.\n"
|