mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
0027557: Unstable HLR tests
The following modifications were done for stability: - Precision::PConfusion() was set as parameter of Classifier instead of 0.0 - Coinciding vertices of outlines are united to exclude neighborhood of common vertex from curve-curve intersection - Draw command "hlrin3d" was modified to prevent exception Minor corrections Corrections of test cases for issue CR27557
This commit is contained in:
parent
f84bf635f0
commit
854e0d4a27
@ -1987,7 +1987,7 @@ HLRBRep_Data::Classify (const Standard_Integer E,
|
|||||||
HLRAlgo::EncodeMinMax((Standard_Address)VertMin,
|
HLRAlgo::EncodeMinMax((Standard_Address)VertMin,
|
||||||
(Standard_Address)VertMax,
|
(Standard_Address)VertMax,
|
||||||
(Standard_Address)MinMaxVert);
|
(Standard_Address)MinMaxVert);
|
||||||
|
/*
|
||||||
#ifdef OCCT_DEBUG
|
#ifdef OCCT_DEBUG
|
||||||
{
|
{
|
||||||
Standard_Integer qwe,qwep8,q,q1,q2;
|
Standard_Integer qwe,qwep8,q,q1,q2;
|
||||||
@ -2027,6 +2027,7 @@ HLRBRep_Data::Classify (const Standard_Integer E,
|
|||||||
cout<<endl;
|
cout<<endl;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
*/
|
||||||
|
|
||||||
if (((MaxFace1 - MinVert1) & 0x80008000) != 0 ||
|
if (((MaxFace1 - MinVert1) & 0x80008000) != 0 ||
|
||||||
((MaxVert1 - MinFace1) & 0x80008000) != 0 ||
|
((MaxVert1 - MinFace1) & 0x80008000) != 0 ||
|
||||||
@ -2109,7 +2110,9 @@ HLRBRep_Data::Classify (const Standard_Integer E,
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
gp_Pnt2d pnt2d(u,v);
|
gp_Pnt2d pnt2d(u,v);
|
||||||
if (myClassifier->Classify(pnt2d,0.0)!=TopAbs_OUT) {
|
if (myClassifier->Classify(pnt2d,Precision::PConfusion())
|
||||||
|
!= TopAbs_OUT)
|
||||||
|
{
|
||||||
InsideRestriction = Standard_True;
|
InsideRestriction = Standard_True;
|
||||||
state = TopAbs_IN;
|
state = TopAbs_IN;
|
||||||
Level++;
|
Level++;
|
||||||
|
@ -487,10 +487,13 @@ static Standard_Integer hlrin3d(Draw_Interpretor& , Standard_Integer n, const ch
|
|||||||
BB.MakeCompound(Result);
|
BB.MakeCompound(Result);
|
||||||
|
|
||||||
TopoDS_Shape SharpEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Sharp, Standard_True, Standard_True);
|
TopoDS_Shape SharpEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Sharp, Standard_True, Standard_True);
|
||||||
|
if (!SharpEdges.IsNull())
|
||||||
BB.Add(Result, SharpEdges);
|
BB.Add(Result, SharpEdges);
|
||||||
TopoDS_Shape OutLines = Reflector.GetCompoundOf3dEdges(HLRBRep_OutLine, Standard_True, Standard_True);
|
TopoDS_Shape OutLines = Reflector.GetCompoundOf3dEdges(HLRBRep_OutLine, Standard_True, Standard_True);
|
||||||
|
if (!OutLines.IsNull())
|
||||||
BB.Add(Result, OutLines);
|
BB.Add(Result, OutLines);
|
||||||
TopoDS_Shape SmoothEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Rg1Line, Standard_True, Standard_True);
|
TopoDS_Shape SmoothEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Rg1Line, Standard_True, Standard_True);
|
||||||
|
if (!SmoothEdges.IsNull())
|
||||||
BB.Add(Result, SmoothEdges);
|
BB.Add(Result, SmoothEdges);
|
||||||
|
|
||||||
DBRep::Set(a[1], Result);
|
DBRep::Set(a[1], Result);
|
||||||
|
@ -454,6 +454,46 @@ void HLRTopoBRep_DSFiller::InsertFace (const Standard_Integer /*FI*/,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Correction of internal outlines: unite coinciding vertices
|
||||||
|
const Standard_Real SqTol = tol*tol;
|
||||||
|
TopTools_ListIteratorOfListOfShape itl1(IntL);
|
||||||
|
for (; itl1.More(); itl1.Next())
|
||||||
|
{
|
||||||
|
TopoDS_Edge anIntLine = TopoDS::Edge(itl1.Value());
|
||||||
|
anIntLine.Orientation(TopAbs_FORWARD);
|
||||||
|
TopoDS_Vertex aVer [2];
|
||||||
|
TopExp::Vertices(anIntLine, aVer[0], aVer[1]);
|
||||||
|
TopTools_ListIteratorOfListOfShape itl2 = itl1;
|
||||||
|
for (; itl2.More(); itl2.Next())
|
||||||
|
{
|
||||||
|
TopoDS_Edge anIntLine2 = TopoDS::Edge(itl2.Value());
|
||||||
|
anIntLine2.Orientation(TopAbs_FORWARD);
|
||||||
|
if (anIntLine2.IsSame(anIntLine))
|
||||||
|
continue;
|
||||||
|
TopoDS_Vertex aVer2 [2];
|
||||||
|
TopExp::Vertices(anIntLine2, aVer2[0], aVer2[1]);
|
||||||
|
for (Standard_Integer i = 0; i < 2; i++)
|
||||||
|
{
|
||||||
|
if (i == 1 && aVer[0].IsSame(aVer[1]))
|
||||||
|
continue;
|
||||||
|
gp_Pnt Pnt1 = BRep_Tool::Pnt(aVer[i]);
|
||||||
|
for (Standard_Integer j = 0; j < 2; j++)
|
||||||
|
{
|
||||||
|
if (aVer[i].IsSame(aVer2[j]))
|
||||||
|
continue;
|
||||||
|
gp_Pnt Pnt2 = BRep_Tool::Pnt(aVer2[j]);
|
||||||
|
if (Pnt1.SquareDistance(Pnt2) <= SqTol)
|
||||||
|
{
|
||||||
|
BRep_Builder aBB;
|
||||||
|
aBB.Remove(anIntLine2, aVer2[j]);
|
||||||
|
aVer[i].Orientation((j==0)? TopAbs_FORWARD : TopAbs_REVERSED);
|
||||||
|
aBB.Add(anIntLine2, aVer[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
@ -20,15 +20,15 @@ compound vl v1l vnl vol vil result
|
|||||||
|
|
||||||
set nbshapes_expected "
|
set nbshapes_expected "
|
||||||
Number of shapes in shape
|
Number of shapes in shape
|
||||||
VERTEX : 167
|
VERTEX : 93
|
||||||
EDGE : 84
|
EDGE : 47
|
||||||
WIRE : 0
|
WIRE : 0
|
||||||
FACE : 0
|
FACE : 0
|
||||||
SHELL : 0
|
SHELL : 0
|
||||||
SOLID : 0
|
SOLID : 0
|
||||||
COMPSOLID : 0
|
COMPSOLID : 0
|
||||||
COMPOUND : 1
|
COMPOUND : 1
|
||||||
SHAPE : 252
|
SHAPE : 141
|
||||||
"
|
"
|
||||||
|
|
||||||
checknbshapes result -ref ${nbshapes_expected} -t -m "HLRToShape"
|
checknbshapes result -ref ${nbshapes_expected} -t -m "HLRToShape"
|
||||||
|
@ -22,6 +22,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 291.117
|
checkprops result -l 291.117
|
||||||
checknbshapes result -vertex 18 -edge 9
|
checknbshapes result -vertex 16 -edge 8
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,12 +22,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 334.113
|
checkprops result -l 334.113
|
||||||
|
checknbshapes result -vertex 24 -edge 12
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
||||||
if { [regexp {Windows} [dversion]] } {
|
|
||||||
checknbshapes result -vertex 24 -edge 12
|
|
||||||
} else {
|
|
||||||
checknbshapes result -vertex 26 -edge 13
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1188.11
|
checkprops result -l 1030.62
|
||||||
checknbshapes result -vertex 324 -edge 163
|
checknbshapes result -vertex 236 -edge 119
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,13 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 425.969
|
checkprops result -l 414.732
|
||||||
|
checknbshapes result -vertex 200 -edge 100
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
||||||
if { [regexp {Windows} [dversion]] } {
|
|
||||||
checknbshapes result -vertex 198 -edge 99
|
|
||||||
} else {
|
|
||||||
checknbshapes result -vertex 200 -edge 100
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 3299.23
|
checkprops result -l 3249.9
|
||||||
checknbshapes result -vertex 648 -edge 324
|
checknbshapes result -vertex 634 -edge 317
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 3016.59
|
checkprops result -l 2867.9
|
||||||
checknbshapes result -vertex 1388 -edge 696
|
checknbshapes result -vertex 1365 -edge 684
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1760.66
|
checkprops result -l 1760.66
|
||||||
checknbshapes result -vertex 508 -edge 254
|
checknbshapes result -vertex 500 -edge 250
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 2893.98
|
checkprops result -l 2893.98
|
||||||
checknbshapes result -vertex 725 -edge 363
|
checknbshapes result -vertex 697 -edge 349
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,13 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
checkprops result -l 2282.11
|
||||||
if { [regexp {Windows} [dversion]] } {
|
checknbshapes result -vertex 943 -edge 474
|
||||||
checkprops result -l 2377.14
|
|
||||||
checknbshapes result -vertex 1008 -edge 507
|
|
||||||
} else {
|
|
||||||
checkprops result -l 2345.73
|
|
||||||
checknbshapes result -vertex 1007 -edge 506
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1260.37
|
checkprops result -l 1169.48
|
||||||
checknbshapes result -vertex 527 -edge 264
|
checknbshapes result -vertex 482 -edge 241
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 2040.68
|
checkprops result -l 2010.95
|
||||||
checknbshapes result -vertex 344 -edge 172
|
checknbshapes result -vertex 312 -edge 156
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 808.299
|
checkprops result -l 778.117
|
||||||
checknbshapes result -vertex 578 -edge 289
|
checknbshapes result -vertex 550 -edge 275
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1124.09
|
checkprops result -l 1095.44
|
||||||
checknbshapes result -vertex 354 -edge 177
|
checknbshapes result -vertex 328 -edge 164
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 520.703
|
checkprops result -l 520.703
|
||||||
checknbshapes result -vertex 310 -edge 155
|
checknbshapes result -vertex 306 -edge 153
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 9662.5
|
checkprops result -l 9662.5
|
||||||
checknbshapes result -vertex 4531 -edge 2272
|
checknbshapes result -vertex 4417 -edge 2215
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,12 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 5910.01
|
checkprops result -l 5910.01
|
||||||
|
checknbshapes result -vertex 1406 -edge 703
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
||||||
if { [regexp {Windows} [dversion]] } {
|
|
||||||
checknbshapes result -vertex 1461 -edge 731
|
|
||||||
} else {
|
|
||||||
checknbshapes result -vertex 1460 -edge 730
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,13 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 5343.53
|
checkprops result -l 5219.21
|
||||||
|
checknbshapes result -vertex 1692 -edge 848
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
||||||
if { [regexp {Windows} [dversion]] } {
|
|
||||||
checknbshapes result -vertex 1813 -edge 909
|
|
||||||
} else {
|
|
||||||
checknbshapes result -vertex 1812 -edge 908
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1764.64
|
checkprops result -l 1764.64
|
||||||
checknbshapes result -vertex 353 -edge 177
|
checknbshapes result -vertex 345 -edge 173
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 2647.04
|
checkprops result -l 2619.72
|
||||||
checknbshapes result -vertex 614 -edge 307
|
checknbshapes result -vertex 578 -edge 289
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,6 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 2429.7
|
checkprops result -l 2429.7
|
||||||
checknbshapes result -vertex 387 -edge 194
|
checknbshapes result -vertex 379 -edge 190
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 792.344
|
checkprops result -l 755.552
|
||||||
checknbshapes result -vertex 410 -edge 205
|
checknbshapes result -vertex 376 -edge 188
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1751.95
|
checkprops result -l 1726.77
|
||||||
checknbshapes result -vertex 867 -edge 434
|
checknbshapes result -vertex 801 -edge 401
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -23,12 +23,6 @@ build3d result
|
|||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 6584.94
|
checkprops result -l 6584.94
|
||||||
|
checknbshapes result -vertex 774 -edge 387
|
||||||
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
||||||
if { [regexp {Windows} [dversion]] } {
|
|
||||||
checknbshapes result -vertex 819 -edge 410
|
|
||||||
} else {
|
|
||||||
checknbshapes result -vertex 818 -edge 409
|
|
||||||
}
|
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 838.306
|
checkprops result -l 813.531
|
||||||
checknbshapes result -vertex 478 -edge 239
|
checknbshapes result -vertex 452 -edge 226
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 220.507
|
checkprops result -l 211.007
|
||||||
checknbshapes result -vertex 110 -edge 55
|
checknbshapes result -vertex 102 -edge 51
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 565.837
|
checkprops result -l 521.037
|
||||||
checknbshapes result -vertex 324 -edge 162
|
checknbshapes result -vertex 316 -edge 158
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -11,7 +11,7 @@ pload QAcommands
|
|||||||
|
|
||||||
testreadstep [locate_data_file bug27341_conboom.stp] a
|
testreadstep [locate_data_file bug27341_conboom.stp] a
|
||||||
|
|
||||||
set viewname "right"
|
set viewname "back"
|
||||||
|
|
||||||
smallview
|
smallview
|
||||||
top
|
top
|
||||||
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 23600.7
|
checkprops result -l 48596.2
|
||||||
checknbshapes result -vertex 174 -edge 87
|
checknbshapes result -vertex 312 -edge 156
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -22,7 +22,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 47.1886
|
checkprops result -l 40.3211
|
||||||
checknbshapes result -vertex 70 -edge 35
|
checknbshapes result -vertex 60 -edge 30
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
@ -24,7 +24,7 @@ build3d result
|
|||||||
|
|
||||||
fit
|
fit
|
||||||
|
|
||||||
checkprops result -l 1147.49
|
checkprops result -l 1126.76
|
||||||
checknbshapes result -vertex 298 -edge 149
|
checknbshapes result -vertex 280 -edge 140
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
Loading…
x
Reference in New Issue
Block a user