mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add new class (BRepBuilderAPI_MakeShapeOnMesh) to reconstruct shape from triangulation on per-facet basis.
26 lines
757 B
Plaintext
Executable File
26 lines
757 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC22670"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# Regression in the method RWStl::WriteAscii
|
|
#######################################################################################
|
|
|
|
set BugNumber OCC22670
|
|
|
|
readstl res_mesh [locate_data_file OMF6391_box.stl] -brep
|
|
|
|
set aFile ${imagedir}/OCC22670.stl
|
|
file delete ${aFile}
|
|
|
|
incmesh res_mesh 0.1
|
|
|
|
set anASCIImode 0
|
|
writestl res_mesh ${aFile} ${anASCIImode}
|
|
catch {exec chmod 777 ${aFile}}
|
|
|
|
readstl result ${aFile} -brep
|
|
|
|
checknbshapes result -vertex 8 -edge 18 -wire 12 -face 12 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 51
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|