mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. There has been implemented calculation of all possible types of continuity for shared edges: * G1 is set if tangential planes are the same for connected faces in each control points through the edge; * C1 is set in addition to G1 conditions if derivatives, orthogonal to the edge on each face, are equal vectors; * G2 is set in addition to G1 if the centers of principal curvatures are the same for connected faces in each control points through the edge; * C2 is set in addition to C1 and G2 if directions of principal curvatures are equal; * CN continuity is set only if both connected faces are based on elementary surfaces (the conditions for this case are similar to C2 continuity). 2. ShapeFix::EncodeRegularity() is merged into BRepLib::EncodeRegularity(). 3. Implemented several test cases to check correct handling of regularity. 4. Fix incorrect usage of BRepLib::EncodeRegularity() in BRepBuilderAPI_Sewing. 5. Implement a method for calculation of regularity on the given list of edges. 6. Documentation updates
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
puts "========"
|
|
puts "0027383: Modeling - improve handling of regularity on edges"
|
|
puts "========"
|
|
puts ""
|
|
#################################################################
|
|
# Check regularity setting on edges between rotated or mirrored half spheres
|
|
#################################################################
|
|
|
|
pload MODELING
|
|
psphere s1 10 180
|
|
psphere s2 10 180
|
|
explode s1 f
|
|
explode s2 f
|
|
tmirror s2_1 0 0 0 0 1 0
|
|
trotate s2_1 0 0 0 0 1 0 45
|
|
sewing r s1_1 s2_1
|
|
encoderegularity r
|
|
|
|
explode r F
|
|
set edges [explode r_1 E]
|
|
set len 0
|
|
foreach e ${edges} {
|
|
# check for degenerated edge
|
|
set e_props [lprops $e 1.e-4]
|
|
regexp {Mass : +([0-9.+-eE]+)} $e_props full len
|
|
|
|
if { [expr abs($len) > 1.e-7] } {
|
|
set cont "G2"
|
|
} else {
|
|
# degenerated edges have always C0 continuity
|
|
set cont "C0"
|
|
}
|
|
|
|
if { ! [regexp "${cont}" [getedgeregularity $e r_1 r_2]] } {
|
|
puts "Error: Invalid regularity of the edge, expected ${cont}"
|
|
}
|
|
}
|
|
|
|
# make image in HLR mode as illustration
|
|
pload VISUALIZATION
|
|
vdisplay r
|
|
vfit
|
|
vhlr on
|
|
vdump ${imagedir}/${test_image}.png
|