mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Aspect_IS_HOLLOW now an alias to Aspect_IS_EMPTY and Aspect_IS_HIDDENLINE does not implicitly enables mesh edges, so that Graphic3d_AspectFillArea3d::SetDrawEdges() should be set independently. OpenGl_ShaderManager now provides built-in GLSL programs for drawing mesh edges in single pass (and on OpenGL ES which does not provide glPolygonMode()). Graphic3d_RenderingParams::ToEnableAlphaToCoverage is now enabled by default and properly handled at TKOpenGl level - enables coverage for Graphic3d_AlphaMode_Mask primitives. OpenGl_PrimitiveArray now uses GLSL programs instead of glPolygonMode() by default, which can be managed by OpenGl_Caps::usePolygonMode flag (desktop OpenGL only). glPolygonMode() is also used as fallback regardless OpenGl_Caps::usePolygonMode flag when GLSL programs are not supported (Geometry Shaders are required) or stipple line style is required (not implemented within Face GLSL). vaspects command has been extended by -setInterior -setDrawEdges -setEdgeColor -setEdgeType -setEdgeWidth arguments replacing vsetinteriorstyle/vsetedgetype/vunsetedgetype commands. vaspects now accepts arguments without "set" prefix. ViewerTest::ParseColor() now parses RGBA color. Redundant command BUC60738 has been removed. AIS_ColorScale - fixed usage of uninitialized FillArea aspects.
31 lines
620 B
Plaintext
31 lines
620 B
Plaintext
puts "======="
|
|
puts "0029751: Incremental mesh produces different meshes for windows and linux (debian 8)"
|
|
puts "======="
|
|
puts ""
|
|
|
|
psphere sp 10
|
|
pcylinder b1 2 10
|
|
ttranslate b1 0 0 -10
|
|
bcut result sp b1
|
|
trotate result 0 0 0 1 0 0 45
|
|
incmesh result 0.1
|
|
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
vdefaults -autoTriang 0
|
|
vdisplay -dispMode 1 result
|
|
vaspects result -setInteriorStyle HOLLOW -setDrawEdges 1
|
|
vfit
|
|
|
|
set log [tricheck result]
|
|
if { [llength $log] != 0 } {
|
|
puts "Error : Invalid mesh"
|
|
} else {
|
|
puts "Mesh is OK"
|
|
}
|
|
|
|
checktrinfo result -tri 1013 -nod 578 -defl 0.1
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|