1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026607: Wrong value of area.

Test case for issue CR26607

Fix regressions

Correction of test cases for issue CR26607
This commit is contained in:
ifv 2015-10-01 13:48:27 +03:00 committed by bugmaster
parent 0e14656b30
commit 5b0f2540d7
128 changed files with 292 additions and 232 deletions

View File

@ -47,7 +47,7 @@ void BRepGProp::LinearProperties(const TopoDS_Shape& S, GProp_GProps& SProps){
SProps = GProp_GProps(P); SProps = GProp_GProps(P);
BRepAdaptor_Curve BAC; BRepAdaptor_Curve BAC;
// Standard_Integer n,i; // Standard_Integer n,i;
TopExp_Explorer ex; TopExp_Explorer ex;
for (ex.Init(S,TopAbs_EDGE); ex.More(); ex.Next()) { for (ex.Init(S,TopAbs_EDGE); ex.More(); ex.Next()) {
BAC.Initialize(TopoDS::Edge(ex.Current())); BAC.Initialize(TopoDS::Edge(ex.Current()));
@ -72,7 +72,9 @@ static Standard_Real surfaceProperties(const TopoDS_Shape& S, GProp_GProps& Prop
for (ex.Init(S,TopAbs_FACE), i = 1; ex.More(); ex.Next(), i++) { for (ex.Init(S,TopAbs_FACE), i = 1; ex.More(); ex.Next(), i++) {
const TopoDS_Face& F = TopoDS::Face(ex.Current()); const TopoDS_Face& F = TopoDS::Face(ex.Current());
BF.Load(F); BF.Load(F);
if(!BF.NaturalRestriction()) BD.Init(F); TopoDS_Iterator aWIter(F);
Standard_Boolean IsNatRestr = !aWIter.More();
if(!IsNatRestr) BD.Init(F);
if(Eps < 1.0) { if(Eps < 1.0) {
G.Perform(BF, BD, Eps); G.Perform(BF, BD, Eps);
Error = G.GetEpsilon(); Error = G.GetEpsilon();
@ -83,7 +85,7 @@ static Standard_Real surfaceProperties(const TopoDS_Shape& S, GProp_GProps& Prop
#endif #endif
} }
} else { } else {
if(BF.NaturalRestriction()) G.Perform(BF); if(IsNatRestr) G.Perform(BF);
else G.Perform(BF, BD); else G.Perform(BF, BD);
} }
Props.Add(G); Props.Add(G);
@ -133,20 +135,22 @@ static Standard_Real volumeProperties(const TopoDS_Shape& S, GProp_GProps& Props
const TopoDS_Face& F = TopoDS::Face(ex.Current()); const TopoDS_Face& F = TopoDS::Face(ex.Current());
if ((F.Orientation() == TopAbs_FORWARD) || (F.Orientation() == TopAbs_REVERSED)){ if ((F.Orientation() == TopAbs_FORWARD) || (F.Orientation() == TopAbs_REVERSED)){
BF.Load(F); BF.Load(F);
if(!BF.NaturalRestriction()) BD.Init(F); TopoDS_Iterator aWIter(F);
Standard_Boolean IsNatRestr = !aWIter.More();
if(!IsNatRestr) BD.Init(F);
if(Eps < 1.0) { if(Eps < 1.0) {
G.Perform(BF, BD, Eps); G.Perform(BF, BD, Eps);
Error = G.GetEpsilon(); Error = G.GetEpsilon();
if(ErrorMax < Error) { if(ErrorMax < Error) {
ErrorMax = Error; ErrorMax = Error;
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
iErrorMax = i; iErrorMax = i;
#endif #endif
} }
} }
else { else {
if(BF.NaturalRestriction()) G.Perform(BF); if(IsNatRestr) G.Perform(BF);
else G.Perform(BF, BD); else G.Perform(BF, BD);
} }
Props.Add(G); Props.Add(G);
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
@ -178,7 +182,7 @@ void BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& Props, co
//======================================================================= //=======================================================================
Standard_Real BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& Props, Standard_Real BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& Props,
const Standard_Real Eps, const Standard_Boolean OnlyClosed) const Standard_Real Eps, const Standard_Boolean OnlyClosed)
{ {
// find the origin // find the origin
gp_Pnt P(0,0,0); P.Transform(S.Location()); gp_Pnt P(0,0,0); P.Transform(S.Location());
@ -193,13 +197,13 @@ Standard_Real BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& P
for (i = 1; ex.More(); ex.Next(), i++) { for (i = 1; ex.More(); ex.Next(), i++) {
const TopoDS_Shape& Sh = ex.Current(); const TopoDS_Shape& Sh = ex.Current();
if(BRep_Tool::IsClosed(Sh)) { if(BRep_Tool::IsClosed(Sh)) {
Error = volumeProperties(Sh,Props,Eps); Error = volumeProperties(Sh,Props,Eps);
if(ErrorMax < Error) { if(ErrorMax < Error) {
ErrorMax = Error; ErrorMax = Error;
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
iErrorMax = i; iErrorMax = i;
#endif #endif
} }
} }
} }
} else ErrorMax = volumeProperties(S,Props,Eps); } else ErrorMax = volumeProperties(S,Props,Eps);
@ -218,15 +222,15 @@ Standard_Real BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& P
//======================================================================= //=======================================================================
static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape, static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
GProp_GProps &theProps, GProp_GProps &theProps,
const Standard_Real theTol, const Standard_Real theTol,
const Standard_Boolean IsUseSpan, const Standard_Boolean IsUseSpan,
const Standard_Boolean CGFlag, const Standard_Boolean CGFlag,
const Standard_Boolean IFlag) const Standard_Boolean IFlag)
{ {
TopExp_Explorer anExp; TopExp_Explorer anExp;
anExp.Init(theShape, TopAbs_FACE); anExp.Init(theShape, TopAbs_FACE);
Standard_Real aTol = theTol; Standard_Real aTol = theTol;
// Compute properties. // Compute properties.
@ -243,21 +247,23 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
TopoDS_Face aFace = TopoDS::Face(anExp.Current()); TopoDS_Face aFace = TopoDS::Face(anExp.Current());
if (aFace.Orientation() == TopAbs_FORWARD || if (aFace.Orientation() == TopAbs_FORWARD ||
aFace.Orientation() == TopAbs_REVERSED) { aFace.Orientation() == TopAbs_REVERSED) {
aPropFace.Load(aFace); aPropFace.Load(aFace);
if(aPropFace.NaturalRestriction()) TopoDS_Iterator aWIter(aFace);
aLocalError = aVProps.Perform(aPropFace, aTol, CGFlag, IFlag); Standard_Boolean IsNatRestr = !aWIter.More();
else { if(IsNatRestr)
aPropDomain.Init(aFace); aLocalError = aVProps.Perform(aPropFace, aTol, CGFlag, IFlag);
aLocalError = aVProps.Perform(aPropFace, aPropDomain, aTol, CGFlag, IFlag); else {
} aPropDomain.Init(aFace);
aLocalError = aVProps.Perform(aPropFace, aPropDomain, aTol, CGFlag, IFlag);
}
if (aLocalError < 0.) if (aLocalError < 0.)
return aLocalError; return aLocalError;
anError += aLocalError; anError += aLocalError;
theProps.Add(aVProps); theProps.Add(aVProps);
} }
} }
@ -270,12 +276,12 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
//======================================================================= //=======================================================================
Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S, Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
GProp_GProps &Props, GProp_GProps &Props,
const Standard_Real Eps, const Standard_Real Eps,
const Standard_Boolean OnlyClosed, const Standard_Boolean OnlyClosed,
const Standard_Boolean IsUseSpan, const Standard_Boolean IsUseSpan,
const Standard_Boolean CGFlag, const Standard_Boolean CGFlag,
const Standard_Boolean IFlag) const Standard_Boolean IFlag)
{ {
gp_Pnt P(0,0,0); gp_Pnt P(0,0,0);
Standard_Real anError = 0.; Standard_Real anError = 0.;
@ -297,7 +303,7 @@ Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
BRepCheck_Status aStatus = aChecker.Closed(Standard_False); BRepCheck_Status aStatus = aChecker.Closed(Standard_False);
if(aStatus == BRepCheck_NoError) if(aStatus == BRepCheck_NoError)
aClosedShells.Append(aShell); aClosedShells.Append(aShell);
} }
@ -315,11 +321,11 @@ Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
aLocalError = volumePropertiesGK(aShell, Props, aTol, IsUseSpan, CGFlag, IFlag); aLocalError = volumePropertiesGK(aShell, Props, aTol, IsUseSpan, CGFlag, IFlag);
if (aLocalError < 0) if (aLocalError < 0)
return aLocalError; return aLocalError;
anError += aLocalError; anError += aLocalError;
} }
} else } else
anError = volumePropertiesGK(S, Props, Eps, IsUseSpan, CGFlag, IFlag); anError = volumePropertiesGK(S, Props, Eps, IsUseSpan, CGFlag, IFlag);
@ -334,12 +340,12 @@ Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
//======================================================================= //=======================================================================
static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape, static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
GProp_GProps &theProps, GProp_GProps &theProps,
const gp_Pln &thePln, const gp_Pln &thePln,
const Standard_Real theTol, const Standard_Real theTol,
const Standard_Boolean IsUseSpan, const Standard_Boolean IsUseSpan,
const Standard_Boolean CGFlag, const Standard_Boolean CGFlag,
const Standard_Boolean IFlag) const Standard_Boolean IFlag)
{ {
TopExp_Explorer anExp; TopExp_Explorer anExp;
anExp.Init(theShape, TopAbs_FACE); anExp.Init(theShape, TopAbs_FACE);
@ -360,21 +366,23 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
TopoDS_Face aFace = TopoDS::Face(anExp.Current()); TopoDS_Face aFace = TopoDS::Face(anExp.Current());
if (aFace.Orientation() == TopAbs_FORWARD || if (aFace.Orientation() == TopAbs_FORWARD ||
aFace.Orientation() == TopAbs_REVERSED) { aFace.Orientation() == TopAbs_REVERSED) {
aPropFace.Load(aFace); aPropFace.Load(aFace);
if(aPropFace.NaturalRestriction()) TopoDS_Iterator aWIter(aFace);
aLocalError = aVProps.Perform(aPropFace, thePln, aTol, CGFlag, IFlag); Standard_Boolean IsNatRestr = !aWIter.More();
else { if(IsNatRestr)
aPropDomain.Init(aFace); aLocalError = aVProps.Perform(aPropFace, thePln, aTol, CGFlag, IFlag);
aLocalError = aVProps.Perform(aPropFace, aPropDomain, thePln, aTol, CGFlag, IFlag); else {
} aPropDomain.Init(aFace);
aLocalError = aVProps.Perform(aPropFace, aPropDomain, thePln, aTol, CGFlag, IFlag);
}
if (aLocalError < 0.) if (aLocalError < 0.)
return aLocalError; return aLocalError;
anError += aLocalError; anError += aLocalError;
theProps.Add(aVProps); theProps.Add(aVProps);
} }
} }
@ -387,13 +395,13 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape,
//======================================================================= //=======================================================================
Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S, Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
GProp_GProps &Props, GProp_GProps &Props,
const gp_Pln &thePln, const gp_Pln &thePln,
const Standard_Real Eps, const Standard_Real Eps,
const Standard_Boolean OnlyClosed, const Standard_Boolean OnlyClosed,
const Standard_Boolean IsUseSpan, const Standard_Boolean IsUseSpan,
const Standard_Boolean CGFlag, const Standard_Boolean CGFlag,
const Standard_Boolean IFlag) const Standard_Boolean IFlag)
{ {
gp_Pnt P(0,0,0); gp_Pnt P(0,0,0);
Standard_Real anError = 0.; Standard_Real anError = 0.;
@ -415,7 +423,7 @@ Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
BRepCheck_Status aStatus = aChecker.Closed(Standard_False); BRepCheck_Status aStatus = aChecker.Closed(Standard_False);
if(aStatus == BRepCheck_NoError) if(aStatus == BRepCheck_NoError)
aClosedShells.Append(aShell); aClosedShells.Append(aShell);
} }
@ -433,7 +441,7 @@ Standard_Real BRepGProp::VolumePropertiesGK(const TopoDS_Shape &S,
aLocalError = volumePropertiesGK(aShell, Props, thePln, aTol, IsUseSpan, CGFlag, IFlag); aLocalError = volumePropertiesGK(aShell, Props, thePln, aTol, IsUseSpan, CGFlag, IFlag);
if (aLocalError < 0) if (aLocalError < 0)
return aLocalError; return aLocalError;
anError += aLocalError; anError += aLocalError;
} }

View File

@ -65,6 +65,9 @@ public:
//! Returns Standard_True if the face is not trimmed. //! Returns Standard_True if the face is not trimmed.
Standard_Boolean NaturalRestriction() const; Standard_Boolean NaturalRestriction() const;
//! Returns the TopoDS face.
const TopoDS_Face& GetFace() const;
//! Returns the value of the boundary curve of the face. //! Returns the value of the boundary curve of the face.
gp_Pnt2d Value2d (const Standard_Real U) const; gp_Pnt2d Value2d (const Standard_Real U) const;

View File

@ -48,6 +48,16 @@ inline Standard_Boolean BRepGProp_Face::NaturalRestriction() const
{ {
return BRep_Tool::NaturalRestriction(mySurface.Face()); return BRep_Tool::NaturalRestriction(mySurface.Face());
} }
//
//=======================================================================
//function : GetFace
//purpose : Returns TopoDS Face.
//=======================================================================
inline const TopoDS_Face& BRepGProp_Face::GetFace() const
{
return mySurface.Face();
}
//======================================================================= //=======================================================================
//function : Value2d //function : Value2d

View File

@ -584,7 +584,9 @@ Standard_Real BRepGProp_Gauss::Compute(
// //
const Standard_Integer NumSubs = SUBS_POWER; const Standard_Integer NumSubs = SUBS_POWER;
const Standard_Boolean isNaturalRestriction = theSurface.NaturalRestriction(); const TopoDS_Face& aF = theSurface.GetFace();
TopoDS_Iterator aWIter(aF);
const Standard_Boolean isNaturalRestriction = !aWIter.More(); //theSurface.NaturalRestriction();
Standard_Real CIx, CIy, CIz, CIxy, CIxz, CIyz; Standard_Real CIx, CIy, CIz, CIxy, CIxz, CIyz;
Standard_Real CDim[2], CIxx[2], CIyy[2], CIzz[2]; Standard_Real CDim[2], CIxx[2], CIyy[2], CIzz[2];
@ -1111,9 +1113,11 @@ void BRepGProp_Gauss::Compute(BRepGProp_Face& theSurface,
{ {
theSurface.Load(theDomain.Value()); theSurface.Load(theDomain.Value());
const Standard_Integer NbCGaussgp_Pnts = Standard_Integer NbCGaussgp_Pnts =
Min(theSurface.IntegrationOrder(), math::GaussPointsMax()); Min(theSurface.IntegrationOrder(), math::GaussPointsMax());
NbCGaussgp_Pnts = Max(NbCGaussgp_Pnts, NbGaussgp_Pnts);
math_Vector GaussCP(1, NbCGaussgp_Pnts); math_Vector GaussCP(1, NbCGaussgp_Pnts);
math_Vector GaussCW(1, NbCGaussgp_Pnts); math_Vector GaussCW(1, NbCGaussgp_Pnts);
math::GaussPoints (NbCGaussgp_Pnts, GaussCP); math::GaussPoints (NbCGaussgp_Pnts, GaussCP);

View File

@ -6,4 +6,4 @@ tscale s1 0 0 0 SCALE1
tscale s2 0 0 0 SCALE1 tscale s2 0 0 0 SCALE1
bfuseblend result s1 s2 1*SCALE1 bfuseblend result s1 s2 1*SCALE1
set square 53457.8 set square 52754.1

View File

@ -9,4 +9,4 @@ mkevol result s
updatevol s_3 0 1*SCALE1 1 2*SCALE1 2 1*SCALE1 updatevol s_3 0 1*SCALE1 1 2*SCALE1 2 1*SCALE1
buildevol buildevol
set square 78053.9 set square 76962.6

View File

@ -9,4 +9,4 @@ blend result m 10 m_5 10 m_6 \
explode result Sh explode result Sh
renamevar result_1 result renamevar result_1 result
set square 5824.68 set square 5884.39

View File

@ -10,4 +10,4 @@ tscale s 0 0 0 SCALE2
explode s E explode s E
blend result s 2.5*SCALE2 s_6 blend result s 2.5*SCALE2 s_6
set square 652.96 set square 638.478

View File

@ -10,6 +10,6 @@ checkshape pl1
bcut result r1 pl1 bcut result r1 pl1
set square 115935 set square 119983
set 2dviewer 0 set 2dviewer 0

View File

@ -66,5 +66,5 @@ copy r_1 result
# An exception was caught Standard_ConstructionError: # An exception was caught Standard_ConstructionError:
# ** Exception ** Standard_ConstructionError: # ** Exception ** Standard_ConstructionError:
set square 1.65227e+07 set square 1.59518e+07
set 2dviewer 0 set 2dviewer 0

View File

@ -33,5 +33,5 @@ if { $MaxFaceTolerance > 1 || $MaxEdgeTolerance > 1 || $MaxVertexTolerance > 1 }
puts "Tolerance of shape is less then 1.0" puts "Tolerance of shape is less then 1.0"
} }
set square 4.10276e+007 set square 4.21741e+007
set 2dviewer 0 set 2dviewer 0

View File

@ -50,5 +50,5 @@ if { $MaxFaceTolerance > 1 || $MaxEdgeTolerance > 1 || $MaxVertexTolerance > 1 }
} else { } else {
puts "Tolerance of shape is less then 1.0" puts "Tolerance of shape is less then 1.0"
} }
set square 3.92639e+007 set square 4.03996e+007
set 2dviewer 0 set 2dviewer 0

View File

@ -39,7 +39,7 @@ puts "CPU_user_time=${CPU_user_time}"
set CPU_user_time [expr ${CPU_user_time} / ${NbTests}] set CPU_user_time [expr ${CPU_user_time} / ${NbTests}]
puts "CPU_user_time=${CPU_user_time}" puts "CPU_user_time=${CPU_user_time}"
set square 3.61484e+07 set square 3.65961e+07
# Analysis of "nbshapes res" # Analysis of "nbshapes res"
set nb_v_good 121 set nb_v_good 121

View File

@ -40,7 +40,7 @@ puts "CPU_user_time=${CPU_user_time}"
set CPU_user_time [expr ${CPU_user_time} / ${NbTests}] set CPU_user_time [expr ${CPU_user_time} / ${NbTests}]
puts "CPU_user_time=${CPU_user_time}" puts "CPU_user_time=${CPU_user_time}"
set square 3.00597e+07 set square 3.05118e+07
# Analysis of "nbshapes res" # Analysis of "nbshapes res"
set nb_v_good 61 set nb_v_good 61

View File

@ -11,7 +11,7 @@ restore [locate_data_file OCC13140_Profile.brep] Profile
pipe result Spine Profile pipe result Spine Profile
set square 3.48689 set square 3.68518
set good_vertex 2 set good_vertex 2
set good_edge 3 set good_edge 3
set good_wire 1 set good_wire 1

View File

@ -12,7 +12,7 @@ restore [locate_data_file OCC21261-1988_ellipsepipesrf_1.brep] s
thickshell result s -5 thickshell result s -5
set square 17366.2 set square 17592.2
set nb_v_good 4 set nb_v_good 4
set nb_e_good 8 set nb_e_good 8

View File

@ -19,4 +19,4 @@ if { [catch { OCC22586 shape result } catch_result] } {
} }
set 3dviewer 1 set 3dviewer 1
set square 11275.7 set square 10975

View File

@ -14,7 +14,7 @@ tscale t 0.0507219 -0.0399294 -0.00324254 1000
explode t e explode t e
blend result t 2. t_3 blend result t 2. t_3
set square 3471.94 set square 3545.26
set nb_v_good 12 set nb_v_good 12
set nb_e_good 14 set nb_e_good 14

View File

@ -1,5 +1,3 @@
puts "TODO OCC23832 ALL: Error : area by triangles differs from the actual area by"
puts "================" puts "================"
puts "OCC22818" puts "OCC22818"
puts "================" puts "================"
@ -24,7 +22,7 @@ don f1
revol result f1 0 10 0 0 0 1 180 revol result f1 0 10 0 0 0 1 180
checkshape result checkshape result
set square 823.385 set square 673.385
set nb_v_good 3 set nb_v_good 3
set nb_e_good 8 set nb_e_good 8

View File

@ -1,5 +1,3 @@
puts "TODO OCC23832 ALL: Error : area by triangles differs from the actual area by"
puts "================" puts "================"
puts "OCC22818" puts "OCC22818"
puts "================" puts "================"
@ -25,7 +23,7 @@ don f1
revol result f1 0 10 0 0 0 1 180 revol result f1 0 10 0 0 0 1 180
checkshape result checkshape result
set square 186.072 set square 161.072
set nb_v_good 3 set nb_v_good 3
set nb_e_good 8 set nb_e_good 8

View File

@ -95,7 +95,5 @@ if {${status} == 0} {
puts "Faulty ${BugNumber}" puts "Faulty ${BugNumber}"
} }
set square 6606.88 set square 8464.91
set 2dviewer 0 set 2dviewer 0

View File

@ -26,6 +26,5 @@ if [catch { buildsweep result } catch_result] {
puts "OCC636 OK: function buildsweep works properly" puts "OCC636 OK: function buildsweep works properly"
} }
set square 3836.92 set square 3934.22
set 2dviewer 0 set 2dviewer 0

View File

@ -12,7 +12,7 @@ explode t
thrusections result 0 0 t_1 t_2 thrusections result 0 0 t_1 t_2
thrusections result 0 0 t_2 t_3 t_4 t_5 t_6 t_7 t_8 t_9 t_10 t_11 thrusections result 0 0 t_2 t_3 t_4 t_5 t_6 t_7 t_8 t_9 t_10 t_11
set square 6733.76 set square 6234.87
set 2dviewer 0 set 2dviewer 0

View File

@ -19,7 +19,7 @@ offset o1 ss 2
mkface res o1 mkface res o1
set info [sprops res] set info [sprops res]
regexp {Mass +: +([-0-9.+eE]+)} $info full sq regexp {Mass +: +([-0-9.+eE]+)} $info full sq
set sq_check 248.667 set sq_check 240.865
if { [expr 1.*abs($sq_check - $sq)/$sq_check] > 0.01 } { if { [expr 1.*abs($sq_check - $sq)/$sq_check] > 0.01 } {
puts "Error : The square of result shape is $sq" puts "Error : The square of result shape is $sq"

View File

@ -16,8 +16,4 @@ don result
fit fit
checkshape result checkshape result
set square 1.86489 set square 1.67216

View File

@ -20,7 +20,7 @@ wire profile profile
pipe result spine profile 2 approx pipe result spine profile 2 approx
set square 8997.97 set square 8772.95
set nb_v_good 2 set nb_v_good 2
set nb_e_good 3 set nb_e_good 3

View File

@ -0,0 +1,21 @@
puts "=========="
puts "OCC26607"
puts "=========="
puts ""
###########################################
# Wrong value of area.
###########################################
box b1 10 10 10
box b2 20 0 0 10 10 10
explode b1 f
explode b2 f
explode b1_5
explode b2_5
mksurface s b1_5
mkface fs s
add b1_5_1 fs
add b2_5_1 fs
checkarea fs -200 1e-06 0.01

View File

@ -26,7 +26,7 @@ if [catch { buildsweep result } ] {
puts "Faulty ${BugNumber} : buildsweep is wrong" puts "Faulty ${BugNumber} : buildsweep is wrong"
} else { } else {
set square 1.87535e+06 set square 1.94998e+06
set nb_v_good 161 set nb_v_good 161
set nb_e_good 299 set nb_e_good 299

View File

@ -75,7 +75,7 @@ if { ${deflection_percent} > ${percent_max} } {
puts "deflection: OK ${BugNumber}" puts "deflection: OK ${BugNumber}"
} }
set square 33561.4 set square 32416.7
set nb_v_good 2 set nb_v_good 2
set nb_e_good 3 set nb_e_good 3

View File

@ -10,7 +10,7 @@ set BugNumber OCC288
restore [locate_data_file shading_151.brep] result restore [locate_data_file shading_151.brep] result
set square 54328.8 set square 52620.1
set nb_v_good 20 set nb_v_good 20
set nb_e_good 37 set nb_e_good 37

View File

@ -19,7 +19,7 @@ stepread $imagedir/${test_image}.step sc2 *
tpcompound sc2 tpcompound sc2
renamevar sc2 result renamevar sc2 result
set square 285636 set square 271280
set nb_v_good 2 set nb_v_good 2
set nb_e_good 3 set nb_e_good 3

View File

@ -20,6 +20,6 @@ if { [regexp {This shape seems to be valid} $info]} {
} }
renamevar result_1 result renamevar result_1 result
set square 15121.2 set square 14447.5
set 3dviewer 0 set 3dviewer 0

View File

@ -1,6 +1,6 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
if {[string compare $command "SplitAngle"] == 0 } { if {[string compare $command "SplitAngle"] == 0 } {
puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_3 " puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_3 "
} }

View File

@ -1,6 +1,6 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file BORNIER80.brep] a restore [locate_data_file BORNIER80.brep] a

View File

@ -1,6 +1,6 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
if {[string compare $command "SplitAngle"] == 0 } { if {[string compare $command "SplitAngle"] == 0 } {
puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_4 " puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_4 "
} }

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file METABO11.brep] a restore [locate_data_file METABO11.brep] a

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file METABO2.brep] a restore [locate_data_file METABO2.brep] a

View File

@ -1,5 +1,5 @@
if {[string compare $command "ShapeConvertRev"] == 0 } { #if {[string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is " # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is "
} #}
restore [locate_data_file PB_COPCOLL.brep] a restore [locate_data_file PB_COPCOLL.brep] a

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file SFR2.brep] a restore [locate_data_file SFR2.brep] a

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file TOP01245_2.brep] a restore [locate_data_file TOP01245_2.brep] a

View File

@ -1,2 +1,3 @@
restore [locate_data_file arx.rle] a restore [locate_data_file arx.rle] a
set rel_tol 0.015

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file heal-Face1.rle] a restore [locate_data_file heal-Face1.rle] a

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file ma-test2.rle] a restore [locate_data_file ma-test2.rle] a

View File

@ -1,6 +1,6 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file heal-Face1.rle] a restore [locate_data_file heal-Face1.rle] a

View File

@ -1,5 +1,5 @@
if { [string compare $command "ShapeConvertRev"] == 0 } { #if { [string compare $command "ShapeConvertRev"] == 0 } {
puts "TODO OCC23127 ALL: Error : The area of the resulting shape is" # puts "TODO OCC23127 ALL: Error : The area of the resulting shape is"
} #}
restore [locate_data_file BUG-CAPAR.brep] a restore [locate_data_file BUG-CAPAR.brep] a

View File

@ -1,2 +1,3 @@
set command ShapeConvertRev set command ShapeConvertRev
set rel_tol 0.01

View File

@ -15,9 +15,8 @@ if { $nb_plane != 0 || $nb_other_surf != 0 || $nb_curve != 0 || $nb_pcurve != 0}
regexp {Mass +: +([-0-9.+eE]+)} [sprops a] full mass regexp {Mass +: +([-0-9.+eE]+)} [sprops a] full mass
regexp {Mass +: +([-0-9.+eE]+)} [sprops result] full m regexp {Mass +: +([-0-9.+eE]+)} [sprops result] full m
if { ($mass != 0 && [expr 1.*abs($mass - $m)/$mass] > 0.01) || ($mass == 0 && $m != 0) } { if { ($mass != 0 && [expr 1.*abs($mass - $m)/$mass] > $rel_tol) || ($mass == 0 && $m != 0) } {
puts "Error : The area of the resulting shape is $m" puts "Error : The area of the resulting shape is $m"
} else { } else {
puts "The areas of the initial and the resulting shape are equal" puts "The areas of the initial and the resulting shape are equal"
} }

View File

@ -1,2 +1,3 @@
set command ShapeConvertRev set command ShapeConvertRev
set rel_tol 0.01

View File

@ -15,9 +15,8 @@ if { $nb_plane != 0 || $nb_other_surf != 0 || $nb_curve != 0 || $nb_pcurve != 0}
regexp {Mass +: +([-0-9.+eE]+)} [sprops a] full mass regexp {Mass +: +([-0-9.+eE]+)} [sprops a] full mass
regexp {Mass +: +([-0-9.+eE]+)} [sprops result] full m regexp {Mass +: +([-0-9.+eE]+)} [sprops result] full m
if { ($mass != 0 && [expr 1.*abs($mass - $m)/$mass] > 0.01) || ($mass == 0 && $m != 0) } { if { ($mass != 0 && [expr 1.*abs($mass - $m)/$mass] > $rel_tol) || ($mass == 0 && $m != 0) } {
puts "Error : The area of the resulting shape is $m" puts "Error : The area of the resulting shape is $m"
} else { } else {
puts "The areas the initial and the resulting shape are equal" puts "The areas of the initial and the resulting shape are equal"
} }

View File

@ -1,3 +1,7 @@
set TheFileName OCC22188.brep set TheFileName OCC22188.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 3.3 if { [string compare $command "shading"] == 0 } {
set rel_tol 0.793
} else {
set rel_tol 0.052
}

View File

@ -1,3 +1,7 @@
set TheFileName shading_094.brep set TheFileName shading_094.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 3.5 if { [string compare $command "shading"] == 0 } {
set rel_tol 0.21
} else {
set rel_tol 0.67
}

View File

@ -1,3 +1,3 @@
set TheFileName shading_099.brep set TheFileName shading_099.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 1.5 set rel_tol 0.298

View File

@ -1,3 +1,7 @@
set TheFileName shading_111.brep set TheFileName shading_111.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 2.8 if { [string compare $command "shading"] == 0 } {
set rel_tol 0.317
} else {
set rel_tol 0.103
}

View File

@ -1,3 +1,7 @@
set TheFileName shading_112.brep set TheFileName shading_112.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 10.9 if { [string compare $command "shading"] == 0 } {
set rel_tol 1.71
} else {
set rel_tol 1.55
}

View File

@ -1,5 +1,9 @@
set TheFileName shading_131.brep set TheFileName shading_131.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 1.34
set bug_withouttri "OCC22687" set bug_withouttri "OCC22687"
set nbwithouttri(ALL) 1 set nbwithouttri(ALL) 1
if { [string compare $command "shading"] == 0 } {
set rel_tol 0.13
} else {
set rel_tol 0.21
}

View File

@ -1,3 +1,7 @@
set TheFileName shading_151.brep set TheFileName shading_151.brep
set bug_area "OCC22687" set bug_area "OCC22687"
set rel_tol 3.15 if { [string compare $command "shading"] == 0 } {
set rel_tol 0.018
} else {
set rel_tol 0.631
}

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 32077.2 set square 30253.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 33790.1 set square 32349.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "-R" set buildsweepOptions "-R"
set square 34911.3 set square 33467.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 8 set nb_e_good 8

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 32119.4 set square 30131.6
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 33656 set square 32064.4
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "-R" set buildsweepOptions "-R"
set square 37899.3 set square 36309.2
set nb_v_good 4 set nb_v_good 4
set nb_e_good 9 set nb_e_good 9

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 29675.6 set square 27860.8
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 31762.6 set square 30617.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 32119.4 set square 30131.6
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 34023.2 set square 32800.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 32077.2 set square 30253.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 33790.1 set square 32349.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "-R" set buildsweepOptions "-R"
set square 34911.3 set square 33467.5
set nb_v_good 3 set nb_v_good 3
set nb_e_good 8 set nb_e_good 8

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 32119.4 set square 30131.6
set nb_v_good 3 set nb_v_good 3
set nb_e_good 5 set nb_e_good 5

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "-R" set buildsweepOptions "-R"
set square 37899.3 set square 36309.2
set nb_v_good 4 set nb_v_good 4
set nb_e_good 9 set nb_e_good 9

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 29697.4 set square 28006.9
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 30656.7 set square 29295.4
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29764.3 set square 27924.2
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 30745.8 set square 29267.5
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 27506.6 set square 25814.6
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 27367.2 set square 25419.9
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29732.8 set square 27882.1
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29264.2 set square 27282.7
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 29697.4 set square 28006.9
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 30656.7 set square 29295.4
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29764.3 set square 27924.2
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 30745.8 set square 29267.5
set nb_v_good 15 set nb_v_good 15
set nb_e_good 25 set nb_e_good 25

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 28767.8 set square 27135.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 29829.6 set square 28434.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29069.5 set square 27289.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions ""
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 30024.7 set square 28489.1
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 27154.8 set square 25522.2
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 28422 set square 27210.9
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29081.3 set square 27294.9
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-FR"
set addsweepOptions "-T -R" set addsweepOptions "-T -R"
set buildsweepOptions "" set buildsweepOptions ""
set square 30243.2 set square 28939
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "" set addsweepOptions ""
set buildsweepOptions "" set buildsweepOptions ""
set square 28767.8 set square 27135.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-T" set addsweepOptions "-T"
set buildsweepOptions "" set buildsweepOptions ""
set square 29829.6 set square 28434.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -19,7 +19,7 @@ set setsweepOptions "-CF"
set addsweepOptions "-R" set addsweepOptions "-R"
set buildsweepOptions "" set buildsweepOptions ""
set square 29069.5 set square 27289.6
set nb_v_good 12 set nb_v_good 12
set nb_e_good 20 set nb_e_good 20

View File

@ -7,4 +7,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 7516.8 set square 7833.49

View File

@ -6,4 +6,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 113874 set square 168406

View File

@ -7,4 +7,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 8385.98 set square 8497.19

View File

@ -7,4 +7,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 7767.04 set square 7262.6

View File

@ -7,4 +7,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 12789.7 set square 12045

View File

@ -7,4 +7,4 @@ mkedge w w
wire w w wire w w
pipe result w profile pipe result w profile
set square 5094.14 set square 4755.96

Some files were not shown because too many files have changed in this diff Show More