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
69 lines
1.6 KiB
Plaintext
69 lines
1.6 KiB
Plaintext
puts "=========="
|
|
puts "0031136: BinXCAF persistence loses normals from triangulation-only Faces"
|
|
puts "=========="
|
|
puts ""
|
|
|
|
pload XDE OCAF
|
|
|
|
StoreTriangulation 1 -normals
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation 1 -normals 0
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
StoreTriangulation 1 -normals 1
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation 1 -nonormals
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
StoreTriangulation 1 -nonormals 0
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation 1 -nonormals 1
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
StoreTriangulation -normals
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation -normals 0
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
StoreTriangulation -normals 1
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation -nonormals
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
StoreTriangulation -nonormals 0
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 1 } {
|
|
puts "Error : normals not on"
|
|
}
|
|
StoreTriangulation -nonormals 1
|
|
set res [StoreTriangulation -getnormals]
|
|
if { $res != 0 } {
|
|
puts "Error : normals not off"
|
|
}
|
|
|
|
puts "OK" |