mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Information about normals are stored in BinOCAF, XmlOCAF, BRep and BBRep (in case of triangulation-only Faces). Versions of formats have been changed (11 for TDocStd, 4 for BRep Shape and 3 for Binary BRep Shape) theWithNormals parameter added to BRepTools::Write() IsWithNormals()/SetWithNormals() function added to BRepTools_ShapeSet -normals/-noNormals option added to StoreTriangulation DRAW command -normals/-noNormals option added to writebrep DRAW command Tests for writing to brep/binary brep/BinXCaf/XmlXCaf added Test for StoreTriangulation options -normals/-noNormals added
28 lines
639 B
Plaintext
28 lines
639 B
Plaintext
puts "=========="
|
|
puts "0031136: BinXCAF persistence loses normals from triangulation-only Faces"
|
|
puts "=========="
|
|
puts ""
|
|
|
|
pload MODELING XDE OCAF VISUALIZATION
|
|
source $env(CSF_OCCTSamplesPath)/tcl/cad.tcl
|
|
trinfo res
|
|
wavefront res $imagedir/${test_image}
|
|
readobj o $imagedir/${test_image}.obj
|
|
|
|
# XBF format
|
|
set test_image_XBF ${test_image}_XBF
|
|
XNewDoc D1
|
|
XAddShape D1 o
|
|
XSave D1 $imagedir/${test_image_XBF}.xbf
|
|
Close D1
|
|
XOpen $imagedir/${test_image_XBF}.xbf D2
|
|
vclear
|
|
vclose ALL
|
|
vinit v1/v1
|
|
vbottom
|
|
XDisplay -dispMode 1 D2
|
|
Close D2
|
|
vfit
|
|
vrenderparams -shadingModel phong
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image_XBF}.png
|