mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Approx/Approx_SameParameter.cxx,hxx: Class Approx_SameParameter refactoring. Logic is changed in many places to unify usage, simplify maintenance. Method Curve2d() is changed to return Geom2d_Curve instead of Geom2d_BSplineCurve. Corresponding message is added to the upgrade guide. .lxx file is merged into .hxx. Tangent computation is extracted into special method. Comparing number of sample points after CheckSameParameter(...) is added to define cases with projection fails. Undesirable behavior when curves are not same parameterized is fixed. Geom2dAdaptor/Geom2dAdaptor.cxx: treatment of offset curve is added Adaptor3d/Adaptor3d_TopolTool.cxx: minor improvement of performance for BSpline surfaces with huge number of knots Tests were modified according to new behavior of sameparameter algorithm
23 lines
936 B
Plaintext
23 lines
936 B
Plaintext
puts [DT_ShapeConvertRev result a 1 1]
|
|
|
|
set expsh [expshape result 0 0]
|
|
set nb_plane 0
|
|
set nb_other_surf 0
|
|
set nb_curve 0
|
|
set nb_pcurve 0
|
|
regexp {Number +of +Planes +- +([-0-9.+eE]+)} $expsh full nb_plane
|
|
regexp {Number +of +other +surfaces +- +([-0-9.+eE]+)} $expsh full nb_other_surf
|
|
regexp {Number +of +other +curves +- +([-0-9.+eE]+)} $expsh full nb_curve
|
|
regexp {Number +of +other +pcurves +- +([-0-9.+eE]+)} $expsh full nb_pcurve
|
|
if { $nb_plane != 0 || $nb_other_surf != 0 || $nb_curve != 0 || $nb_pcurve != 0} {
|
|
puts "Error : The resulting shape is not correct"
|
|
}
|
|
regexp {Mass +: +([-0-9.+eE]+)} [sprops a $rel_tol] full mass
|
|
regexp {Mass +: +([-0-9.+eE]+)} [sprops result $rel_tol] full m
|
|
|
|
if { ($mass != 0 && [expr 1.*abs($mass - $m)/$mass] > 1.5*$rel_tol) || ($mass == 0 && $m != 0) } {
|
|
puts "Error : The area of the resulting shape is $m"
|
|
} else {
|
|
puts "The areas of the initial and the resulting shape are equal"
|
|
}
|