mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
112 lines
4.4 KiB
Plaintext
112 lines
4.4 KiB
Plaintext
puts "============"
|
|
puts "OCC32922 Data Exchange, STEP - The torus is stored incorrectly in STEP format"
|
|
puts "============"
|
|
puts ""
|
|
#####################################################
|
|
# STEP testing the case when a torus is saved in STEP
|
|
# format with an incorrect edge order
|
|
#####################################################
|
|
|
|
pload MODELING XDE
|
|
|
|
if { [info exists imagedir] == 0 } {
|
|
set imagedir ../bug32922
|
|
if {![file exists ${imagedir}]} {
|
|
file mkdir ${imagedir}
|
|
}
|
|
}
|
|
|
|
# Generating resource file where all shape healing is off
|
|
set fdata {
|
|
ToSTEP.exec.op : SplitCommonVertex,DirectFaces
|
|
|
|
FromSTEP.exec.op : FixShape
|
|
|
|
FromSTEP.FixShape.Tolerance3d : &Runtime.Tolerance
|
|
FromSTEP.FixShape.MaxTolerance3d : &Runtime.MaxTolerance
|
|
FromSTEP.FixShape.MinTolerance3d : 1.e-7
|
|
FromSTEP.FixShape.FixFreeShellMode : 0
|
|
FromSTEP.FixShape.FixFreeFaceMode : 0
|
|
FromSTEP.FixShape.FixFreeWireMode : 0
|
|
FromSTEP.FixShape.FixSameParameterMode : 0
|
|
|
|
FromSTEP.FixShape.FixSolidMode : 0
|
|
FromSTEP.FixShape.FixShellOrientationMode : 0
|
|
FromSTEP.FixShape.CreateOpenSolidMode : 0
|
|
|
|
FromSTEP.FixShape.FixShellMode : 0
|
|
FromSTEP.FixShape.FixFaceOrientationMode : 0
|
|
|
|
FromSTEP.FixShape.FixFaceMode : 0
|
|
FromSTEP.FixShape.FixWireMode : 0
|
|
FromSTEP.FixShape.FixOrientationMode : 0
|
|
FromSTEP.FixShape.FixAddNaturalBoundMode : 0
|
|
FromSTEP.FixShape.FixMissingSeamMode : 0
|
|
FromSTEP.FixShape.FixSmallAreaWireMode : 0
|
|
FromSTEP.FixShape.RemoveSmallAreaFaceMode : 0
|
|
FromSTEP.FixShape.FixIntersectingWiresMode : 0
|
|
FromSTEP.FixShape.FixLoopWiresMode : 0
|
|
FromSTEP.FixShape.FixSplitFaceMode : 0
|
|
FromSTEP.FixShape.AutoCorrectPrecisionMode : 0
|
|
FromSTEP.FixShape.ModifyTopologyMode : 0
|
|
FromSTEP.FixShape.ModifyGeometryMode : 0
|
|
FromSTEP.FixShape.ClosedWireMode : 0
|
|
FromSTEP.FixShape.PreferencePCurveMode : 0
|
|
FromSTEP.FixShape.FixReorderMode : 0
|
|
FromSTEP.FixShape.FixSmallMode : 0
|
|
FromSTEP.FixShape.FixConnectedMode : 0
|
|
FromSTEP.FixShape.FixEdgeCurvesMode : 0
|
|
FromSTEP.FixShape.FixDegeneratedMode : 0
|
|
FromSTEP.FixShape.FixLackingMode : 0
|
|
FromSTEP.FixShape.FixSelfIntersectionMode : 0
|
|
FromSTEP.FixShape.RemoveLoopMode : 0
|
|
FromSTEP.FixShape.FixReversed2dMode : 0
|
|
FromSTEP.FixShape.FixRemovePCurveMode : 0
|
|
FromSTEP.FixShape.FixRemoveCurve3dMode : 0
|
|
FromSTEP.FixShape.FixAddPCurveMode : 0
|
|
FromSTEP.FixShape.FixAddCurve3dMode : 0
|
|
FromSTEP.FixShape.FixSeamMode : 0
|
|
FromSTEP.FixShape.FixShiftedMode : 0
|
|
FromSTEP.FixShape.FixEdgeSameParameterMode : 0
|
|
FromSTEP.FixShape.FixNotchedEdgesMode : 0
|
|
FromSTEP.FixShape.FixTailMode : 0
|
|
FromSTEP.FixShape.MaxTailAngle : 0
|
|
FromSTEP.FixShape.MaxTailWidth : 0
|
|
FromSTEP.FixShape.FixSelfIntersectingEdgeMode : 0
|
|
FromSTEP.FixShape.FixIntersectingEdgesMode : 0
|
|
FromSTEP.FixShape.FixNonAdjacentIntersectingEdgesMode : 0
|
|
|
|
FromSTEP.FixShape.FixVertexPositionMode : 0
|
|
FromSTEP.FixShape.FixVertexToleranceMode : 0
|
|
}
|
|
|
|
set new_resource_path ${imagedir}
|
|
set resource_file STEP
|
|
set fo [open "${new_resource_path}/${resource_file}" "wb"]
|
|
puts -nonewline $fo $fdata
|
|
close $fo
|
|
|
|
# Changing the path to the resource file
|
|
set old_resource_path $::env(CSF_STEPDefaults)
|
|
set env(CSF_STEPDefaults) ${new_resource_path}
|
|
|
|
# Generating, writing and reading the torus
|
|
ptorus tor 20 5
|
|
set step_file ${imagedir}/torus.stp
|
|
testwritestep ${step_file} tor
|
|
stepread ${step_file} a *
|
|
|
|
# Cheking the face of the torus
|
|
explode a_1 f
|
|
renamevar a_1_1 result
|
|
checkshape result
|
|
|
|
# Making screenshort
|
|
pcurve result
|
|
view 1 -2D- 728 20 400 400
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
|
|
|
# Restoring the path to the old resource file
|
|
set env(CSF_STEPDefaults) ${old_resource_path}
|