mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Method EstimateDeflection has been added to BRepLib in order to check and update value of deflection provided by Poly_Triangulation; Introduction of Poly_TriangulationParameters intended to keep info about initial parameters of mesh stored by Poly_Triangulation; BRepMesh stores user-specified parameters to Poly_Triangulation via Poly_TriangulationParameters; Prefer initial parameters of mesh generator stored in Poly_Triangulation during check of mesh consistency.
31 lines
654 B
Plaintext
31 lines
654 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.1164052220738387 -tol_abs_defl 1e-6
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|