mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Add check of configuration of corner in the end of spine. 2. Correct treatment of "smooth corners".
26 lines
574 B
Plaintext
26 lines
574 B
Plaintext
puts "=================================================================="
|
|
puts "OCC30940: BRepFilletAPI_MakeFillet algorithm fails on closed shell"
|
|
puts "=================================================================="
|
|
puts ""
|
|
|
|
beziercurve q 4 0 0 0 10 0 0 0 10 0 0 0 0
|
|
mkedge q q
|
|
wire q q
|
|
mkplane q q
|
|
prism q q 0 0 10
|
|
explode q e
|
|
|
|
blend result q 0.5 q_3
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -face 4 -edge 5 -vertex 3
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 1.e-4} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkprops result -v 149.268 -deps 1.e-5
|