mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0024658: fixshape changes source shape
Context usage extended in method ShapeFix_Wire::FixSelfIntersection() to avoid modification of original shape by shape healing. Added check for subshape modification in XSAlgo/XSAlgo_AlgoContainer::MergeTransferInfo(). Test cases are updated to the new behaviour. Test case for issue CR24658
This commit is contained in:
parent
345d30560e
commit
5344638378
@ -897,24 +897,27 @@ Standard_Boolean ShapeFix_Wire::FixSelfIntersection()
|
||||
}
|
||||
}
|
||||
|
||||
if ( NeedFix ( myFixIntersectingEdgesMode ) ) {
|
||||
if ( NeedFix ( myFixIntersectingEdgesMode ) )
|
||||
{
|
||||
Standard_Integer num = ( myClosedMode ? 1 : 2 );
|
||||
for ( ; nb >1 && num <= nb; num++ ) {
|
||||
for ( ; nb >1 && num <= nb; num++ )
|
||||
{
|
||||
FixIntersectingEdges ( num );
|
||||
if ( LastFixStatus ( ShapeExtend_FAIL1 ) )
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL1 );
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL1 );
|
||||
if ( LastFixStatus ( ShapeExtend_FAIL2 ) )
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL2 );
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL2 );
|
||||
if ( ! LastFixStatus ( ShapeExtend_DONE ) ) continue;
|
||||
|
||||
if ( LastFixStatus ( ShapeExtend_DONE1 ) )
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE1 );
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE1 );
|
||||
if ( LastFixStatus ( ShapeExtend_DONE2 ) )
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE2 );
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE2 );
|
||||
if(LastFixStatus (ShapeExtend_DONE6))
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE6 );
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE6 );
|
||||
|
||||
if ( /*! myTopoMode ||*/ nb < 3 ) {
|
||||
if ( /*! myTopoMode ||*/ nb < 3 )
|
||||
{
|
||||
//#86 rln 22.03.99 sim2.igs, entity 4292: After fixing of self-intersecting
|
||||
//BRepCheck finds one more self-intersection not found by ShapeAnalysis
|
||||
//%15 pdn 06.04.99 repeat until fixed CTS18546-2 entity 777
|
||||
@ -928,25 +931,30 @@ Standard_Boolean ShapeFix_Wire::FixSelfIntersection()
|
||||
if ( LastFixStatus ( ShapeExtend_DONE4 ) ) sbwd->Remove ( num );
|
||||
if ( LastFixStatus ( ShapeExtend_DONE3 ) ) sbwd->Remove ( num >1 ? num-1 : nb+num-1 );
|
||||
if ( LastFixStatus ( ShapeExtend_DONE4 ) ||
|
||||
LastFixStatus ( ShapeExtend_DONE3 ) ) {
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE3 );
|
||||
num = ( myClosedMode ? 1 : 2 );
|
||||
nb = sbwd->NbEdges();
|
||||
LastFixStatus ( ShapeExtend_DONE3 ) )
|
||||
{
|
||||
myStatusSelfIntersection |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE3 );
|
||||
num = ( myClosedMode ? 1 : 2 );
|
||||
nb = sbwd->NbEdges();
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: ShapeFix_Wire::FixSelfIntersection: Edge removed" << endl;
|
||||
cout << "Warning: ShapeFix_Wire::FixSelfIntersection: Edge removed" << endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
//#86 rln 22.03.99
|
||||
//%15 pdn 06.04.99 repeat until fixed CTS18546-2 entity 777
|
||||
FixIntersectingEdges ( num );
|
||||
/*if ( LastFixStatus ( ShapeExtend_DONE7 ) )*/
|
||||
else
|
||||
{
|
||||
//#86 rln 22.03.99
|
||||
//%15 pdn 06.04.99 repeat until fixed CTS18546-2 entity 777
|
||||
FixIntersectingEdges ( num );
|
||||
/*if ( LastFixStatus ( ShapeExtend_DONE7 ) )*/
|
||||
// Always revisit the fixed edge
|
||||
//num--;
|
||||
}
|
||||
}
|
||||
if ( !Context().IsNull())
|
||||
UpdateWire();
|
||||
}
|
||||
|
||||
|
||||
//pdn 17.03.99 S4135 to avoid regression fixing not adjacent intersection
|
||||
if ( NeedFix ( myFixNonAdjacentIntersectingEdgesMode ) ) {
|
||||
|
||||
@ -2393,6 +2401,12 @@ Standard_Boolean ShapeFix_Wire::FixIntersectingEdges (const Standard_Integer num
|
||||
Standard_Integer n1 = ( n2 >1 ? n2-1 : sbwd->NbEdges() );
|
||||
TopoDS_Edge E1 = sbwd->Edge(n1);
|
||||
TopoDS_Edge E2 = sbwd->Edge(n2);
|
||||
if ( !Context().IsNull() )
|
||||
{
|
||||
E1 = TopoDS::Edge(Context()->Apply(sbwd->Edge(n1)));
|
||||
E2 = TopoDS::Edge(Context()->Apply(sbwd->Edge(n2)));
|
||||
}
|
||||
|
||||
Standard_Boolean isForward1 = ( E1.Orientation() == TopAbs_FORWARD );
|
||||
Standard_Boolean isForward2 = ( E2.Orientation() == TopAbs_FORWARD );
|
||||
Standard_Real a1, b1, a2, b2;
|
||||
@ -2411,6 +2425,7 @@ Standard_Boolean ShapeFix_Wire::FixIntersectingEdges (const Standard_Integer num
|
||||
Standard_Real prevRange1 = RealLast(), prevRange2 = RealLast();
|
||||
Standard_Boolean cutEdge1 = Standard_False, cutEdge2 = Standard_False;
|
||||
Standard_Boolean IsCutLine = Standard_False;
|
||||
Standard_Boolean isChangedEdge = Standard_False;
|
||||
|
||||
BRep_Builder B;
|
||||
|
||||
@ -2453,6 +2468,8 @@ Standard_Boolean ShapeFix_Wire::FixIntersectingEdges (const Standard_Integer num
|
||||
// Make copy of edges.
|
||||
if (!Context().IsNull())
|
||||
{
|
||||
isChangedEdge = Standard_True; // To avoid double copying of vertexes.
|
||||
|
||||
// Intersection point of two base edges.
|
||||
ShapeBuild_Edge aSBE;
|
||||
TopoDS_Vertex VV1 = Context()->CopyVertex(V1);
|
||||
@ -2566,12 +2583,45 @@ Standard_Boolean ShapeFix_Wire::FixIntersectingEdges (const Standard_Integer num
|
||||
|
||||
if ( ! LastFixStatus ( ShapeExtend_DONE ) ) return Standard_False;
|
||||
|
||||
B.UpdateVertex ( V1, pnt, tol );
|
||||
B.UpdateVertex ( V2, pnt, tol );
|
||||
if (isChangedEdge)
|
||||
{
|
||||
B.UpdateVertex ( V1, pnt, tol );
|
||||
B.UpdateVertex ( V2, pnt, tol );
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( !Context().IsNull() )
|
||||
{
|
||||
if (V1.IsSame(V2) )
|
||||
{
|
||||
Context()->CopyVertex(V1, pnt, tol);
|
||||
}
|
||||
else
|
||||
{
|
||||
Context()->CopyVertex(V1, pnt, tol);
|
||||
Context()->CopyVertex(V2, pnt, tol);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
B.UpdateVertex ( V1, pnt, tol );
|
||||
B.UpdateVertex ( V2, pnt, tol );
|
||||
}
|
||||
}
|
||||
|
||||
//:h4: make edges SP (after all cuts: t4mug.stp #3730+#6460)
|
||||
if ( cutEdge1 ) myFixEdge->FixSameParameter ( E1 );
|
||||
if ( cutEdge2 && !IsCutLine ) myFixEdge->FixSameParameter ( E2 );
|
||||
if ( cutEdge1 )
|
||||
{
|
||||
if ( !Context().IsNull() )
|
||||
E1 = TopoDS::Edge(Context()->Apply(E1));
|
||||
myFixEdge->FixSameParameter ( E1 );
|
||||
}
|
||||
if ( cutEdge2 && !IsCutLine )
|
||||
{
|
||||
if ( !Context().IsNull() )
|
||||
E2 = TopoDS::Edge(Context()->Apply(E2));
|
||||
myFixEdge->FixSameParameter ( E2 );
|
||||
}
|
||||
if ( cutEdge1 || cutEdge2 ) {
|
||||
myLastFixStatus |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE7 );
|
||||
}
|
||||
|
@ -63,6 +63,7 @@
|
||||
#include <UnitsMethods.hxx>
|
||||
#include <XSAlgo_AlgoContainer.hxx>
|
||||
#include <XSAlgo_ToolContainer.hxx>
|
||||
#include <TopExp_Explorer.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : XSAlgo_AlgoContainer
|
||||
@ -427,19 +428,50 @@ void XSAlgo_AlgoContainer::MergeTransferInfo(const Handle(Transfer_TransientProc
|
||||
return;
|
||||
|
||||
Standard_Integer i = ( startTPitem >0 ? startTPitem : 1 );
|
||||
for ( ; i <= TP->NbMapped(); i++ ) {
|
||||
for ( ; i <= TP->NbMapped(); i++ )
|
||||
{
|
||||
Handle(Transfer_Binder) bnd = TP->MapItem ( i );
|
||||
Handle(TransferBRep_ShapeBinder) sb = Handle(TransferBRep_ShapeBinder)::DownCast ( bnd );
|
||||
if ( sb.IsNull() || sb->Result().IsNull() ) continue;
|
||||
|
||||
|
||||
TopoDS_Shape orig = sb->Result();
|
||||
if ( map.IsBound ( orig ) ) sb->SetResult ( map.Find ( orig ) );
|
||||
|
||||
if ( map.IsBound ( orig ) )
|
||||
{
|
||||
sb->SetResult ( map.Find ( orig ) );
|
||||
}
|
||||
else if ( !orig.Location().IsIdentity() )
|
||||
{
|
||||
TopLoc_Location aNullLoc;
|
||||
TopoDS_Shape atmpSh = orig.Located(aNullLoc);
|
||||
if ( map.IsBound ( atmpSh ) ) sb->SetResult ( map.Find ( atmpSh ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
// Some of edges may be modified.
|
||||
BRepTools_ReShape aReShape;
|
||||
Standard_Boolean hasModifiedEdges = Standard_False;
|
||||
TopExp_Explorer anExpSE(orig, TopAbs_EDGE);
|
||||
|
||||
// Remember modifications.
|
||||
for( ; anExpSE.More() ; anExpSE.Next() )
|
||||
{
|
||||
if ( map.IsBound ( anExpSE.Current() ) )
|
||||
{
|
||||
hasModifiedEdges = Standard_True;
|
||||
TopoDS_Shape aModifiedShape = map.Find( anExpSE.Current() );
|
||||
aReShape.Replace(anExpSE.Current(), aModifiedShape);
|
||||
}
|
||||
}
|
||||
|
||||
// Apply modifications and store result in binder.
|
||||
if (hasModifiedEdges)
|
||||
{
|
||||
TopoDS_Shape aRes = aReShape.Apply(orig);
|
||||
sb->SetResult ( aRes );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// update messages
|
||||
if ( ! msg.IsNull() ) {
|
||||
|
21
tests/bugs/heal/bug24658
Normal file
21
tests/bugs/heal/bug24658
Normal file
@ -0,0 +1,21 @@
|
||||
puts "============"
|
||||
puts "OCC24658"
|
||||
puts "============"
|
||||
puts ""
|
||||
#######################################################################
|
||||
## fixshape changes source shape
|
||||
#######################################################################
|
||||
|
||||
restore [locate_data_file bug24658.brep] a
|
||||
|
||||
puts "\nBefore shape healing"
|
||||
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance a] full expected_MaxTolerance
|
||||
|
||||
fixshape af a
|
||||
|
||||
puts "\nAfter shape healing"
|
||||
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance a] full MaxTol
|
||||
|
||||
set tol_abs_MaxTolerance 1.0e-06
|
||||
set tol_rel_MaxTolerance 1.0e-06
|
||||
checkreal "MaxTolerance" ${MaxTol} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 410 ( 410 ) Summary = 11585 ( 11585 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 410 ( 410 ) FreeWire = 410 ( 410 ) FreeEdge = 2910 ( 2910 ) SharedEdge = 4569 ( 4569 )
|
||||
TOLERANCE : MaxTol = 0.6309534605 ( 0.6309534603 ) AvgTol = 0.01007170672 ( 0.0100718085 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1651 ( 2052 ) N2Labels = 0 ( 0 ) TotalLabels = 1652 ( 2053 ) NameLabels = 1652 ( 2053 ) ColorLabels = 1651 ( 2052 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1651 ( 2079 ) N2Labels = 0 ( 0 ) TotalLabels = 1652 ( 2080 ) NameLabels = 1652 ( 2053 ) ColorLabels = 1651 ( 2079 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) Summary = 7973 ( 8005 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) FreeWire = 0 ( 32 ) FreeEdge = 70 ( 70 ) SharedEdge = 3748 ( 3748 )
|
||||
TOLERANCE : MaxTol = 0.9049033554 ( 0.9049033554 ) AvgTol = 0.01221723065 ( 0.01221855991 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 246 ( 2183 ) N2Labels = 0 ( 0 ) TotalLabels = 247 ( 2184 ) NameLabels = 247 ( 374 ) ColorLabels = 246 ( 2183 ) LayerLabels = 241 ( 2178 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 246 ( 2191 ) N2Labels = 0 ( 0 ) TotalLabels = 247 ( 2192 ) NameLabels = 247 ( 374 ) ColorLabels = 246 ( 2191 ) LayerLabels = 241 ( 2186 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = CYAN1 GREEN RED WHITE YELLOW ( CYAN1 GREEN RED WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) Summary = 7763 ( 7763 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) FreeWire = 0 ( 0 ) FreeEdge = 6 ( 6 ) SharedEdge = 3665 ( 3665 )
|
||||
TOLERANCE : MaxTol = 0.1393674657 ( 0.1393674657 ) AvgTol = 0.003094049943 ( 0.003079317701 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 2533 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 2534 ) NameLabels = 215 ( 330 ) ColorLabels = 214 ( 2533 ) LayerLabels = 209 ( 2528 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 3725 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 3726 ) NameLabels = 215 ( 330 ) ColorLabels = 214 ( 3725 ) LayerLabels = 209 ( 3720 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = CYAN1 GREEN RED WHITE YELLOW ( CYAN1 GREEN RED WHITE YELLOW )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 218 ( 218 ) Summary = 33194 ( 33225 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 218 ( 218 ) FreeWire = 77 ( 108 ) FreeEdge = 2656 ( 2656 ) SharedEdge = 15767 ( 15767 )
|
||||
TOLERANCE : MaxTol = 0.1504135906 ( 0.1504135906 ) AvgTol = 0.0004235230987 ( 0.0004477161756 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1279 ( 2954 ) N2Labels = 0 ( 0 ) TotalLabels = 1281 ( 2956 ) NameLabels = 1281 ( 1491 ) ColorLabels = 1280 ( 2955 ) LayerLabels = 284 ( 1902 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1279 ( 3474 ) N2Labels = 0 ( 0 ) TotalLabels = 1281 ( 3476 ) NameLabels = 1281 ( 1491 ) ColorLabels = 1280 ( 3475 ) LayerLabels = 284 ( 2422 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = GREEN MAGENTA1 WHITE YELLOW ( GREEN MAGENTA1 WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 900 ( 900 ) Summary = 18221 ( 18221 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 900 ( 900 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 8213 ( 8213 )
|
||||
TOLERANCE : MaxTol = 0.004034169186 ( 0.004034577888 ) AvgTol = 7.709492698e-006 ( 1.210857047e-005 )
|
||||
LABELS : N0Labels = 900 ( 900 ) N1Labels = 0 ( 877 ) N2Labels = 0 ( 0 ) TotalLabels = 900 ( 1777 ) NameLabels = 900 ( 900 ) ColorLabels = 900 ( 1777 ) LayerLabels = 900 ( 1777 )
|
||||
LABELS : N0Labels = 900 ( 900 ) N1Labels = 0 ( 970 ) N2Labels = 0 ( 0 ) TotalLabels = 900 ( 1870 ) NameLabels = 900 ( 900 ) ColorLabels = 900 ( 1870 ) LayerLabels = 900 ( 1870 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = YELLOW ( YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1038 ( 1038 ) Summary = 22098 ( 22096 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1038 ( 1038 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 10005 ( 10004 )
|
||||
TOLERANCE : MaxTol = 0.5433123154 ( 0.5433122968 ) AvgTol = 0.002230678782 ( 0.002235663837 )
|
||||
LABELS : N0Labels = 1038 ( 1038 ) N1Labels = 0 ( 1109 ) N2Labels = 0 ( 0 ) TotalLabels = 1038 ( 2147 ) NameLabels = 1038 ( 1038 ) ColorLabels = 1038 ( 2147 ) LayerLabels = 1038 ( 2147 )
|
||||
LABELS : N0Labels = 1038 ( 1038 ) N1Labels = 0 ( 1537 ) N2Labels = 0 ( 0 ) TotalLabels = 1038 ( 2575 ) NameLabels = 1038 ( 1038 ) ColorLabels = 1038 ( 2575 ) LayerLabels = 1038 ( 2575 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = GREEN RED ( GREEN RED )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 308 ( 308 ) Summary = 6755 ( 6756 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 308 ( 308 ) FreeWire = 6 ( 7 ) FreeEdge = 795 ( 795 ) SharedEdge = 2675 ( 2675 )
|
||||
TOLERANCE : MaxTol = 0.9778021574 ( 0.9778021574 ) AvgTol = 0.03580274709 ( 0.03579740035 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1089 ( 2047 ) N2Labels = 0 ( 0 ) TotalLabels = 1090 ( 2048 ) NameLabels = 1090 ( 1285 ) ColorLabels = 1089 ( 2047 ) LayerLabels = 168 ( 311 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1089 ( 2056 ) N2Labels = 0 ( 0 ) TotalLabels = 1090 ( 2057 ) NameLabels = 1090 ( 1285 ) ColorLabels = 1089 ( 2056 ) LayerLabels = 168 ( 311 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
COLORS : Colors = BLUE1 GREEN MAGENTA1 RED WHITE YELLOW ( BLUE1 GREEN MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 568 ( 568 ) Summary = 8540 ( 8540 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 568 ( 568 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 3701 ( 3701 )
|
||||
TOLERANCE : MaxTol = 0.4977710304 ( 0.4977710286 ) AvgTol = 0.001985067479 ( 0.001988149118 )
|
||||
LABELS : N0Labels = 568 ( 569 ) N1Labels = 0 ( 878 ) N2Labels = 0 ( 0 ) TotalLabels = 568 ( 1447 ) NameLabels = 568 ( 569 ) ColorLabels = 568 ( 1446 ) LayerLabels = 568 ( 1446 )
|
||||
LABELS : N0Labels = 568 ( 569 ) N1Labels = 0 ( 1209 ) N2Labels = 0 ( 0 ) TotalLabels = 568 ( 1778 ) NameLabels = 568 ( 569 ) ColorLabels = 568 ( 1777 ) LayerLabels = 568 ( 1777 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = YELLOW ( YELLOW )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 12 ( 20 ) Faces = 16 ( 18 ) Shells = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 5163 ( 5163 ) Summary = 68422 ( 68420 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 5163 ( 5163 ) FreeWire = 10 ( 10 ) FreeEdge = 283 ( 283 ) SharedEdge = 29075 ( 29079 )
|
||||
TOLERANCE : MaxTol = 0.9874083984 ( 0.9875071265 ) AvgTol = 0.01114309412 ( 0.01115568387 )
|
||||
LABELS : N0Labels = 5392 ( 5458 ) N1Labels = 18 ( 4297 ) N2Labels = 0 ( 0 ) TotalLabels = 5410 ( 9755 ) NameLabels = 5392 ( 5458 ) ColorLabels = 5391 ( 9689 ) LayerLabels = 5391 ( 9689 )
|
||||
LABELS : N0Labels = 5392 ( 5458 ) N1Labels = 18 ( 4483 ) N2Labels = 0 ( 0 ) TotalLabels = 5410 ( 9941 ) NameLabels = 5392 ( 5458 ) ColorLabels = 5391 ( 9875 ) LayerLabels = 5391 ( 9875 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLACK BLUE1 CYAN1 GREEN ( BLACK BLUE1 CYAN1 GREEN )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 392 ) Summary = 10882 ( 10908 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 392 ) FreeWire = 97 ( 121 ) FreeEdge = 1546 ( 1546 ) SharedEdge = 4308 ( 4310 )
|
||||
TOLERANCE : MaxTol = 0.9393822539 ( 0.9393822539 ) AvgTol = 0.01258756217 ( 0.0125611438 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1695 ( 3503 ) N2Labels = 0 ( 0 ) TotalLabels = 1696 ( 3504 ) NameLabels = 1696 ( 1972 ) ColorLabels = 1695 ( 3503 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1695 ( 3509 ) N2Labels = 0 ( 0 ) TotalLabels = 1696 ( 3510 ) NameLabels = 1696 ( 1972 ) ColorLabels = 1695 ( 3509 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLUE1 GREEN WHITE YELLOW ( BLUE1 GREEN WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1041 ( 1041 ) Summary = 15066 ( 15066 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1041 ( 1041 ) FreeWire = 90 ( 90 ) FreeEdge = 701 ( 701 ) SharedEdge = 6184 ( 6184 )
|
||||
TOLERANCE : MaxTol = 0.90877121 ( 0.9087712052 ) AvgTol = 0.01331864791 ( 0.01331886464 )
|
||||
LABELS : N0Labels = 1571 ( 1571 ) N1Labels = 0 ( 612 ) N2Labels = 0 ( 0 ) TotalLabels = 1571 ( 2183 ) NameLabels = 1571 ( 2173 ) ColorLabels = 1481 ( 2183 ) LayerLabels = 1481 ( 2183 )
|
||||
LABELS : N0Labels = 1571 ( 1571 ) N1Labels = 0 ( 615 ) N2Labels = 0 ( 0 ) TotalLabels = 1571 ( 2186 ) NameLabels = 1571 ( 2173 ) ColorLabels = 1481 ( 2186 ) LayerLabels = 1481 ( 2186 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = GREEN MAGENTA1 RED YELLOW ( GREEN MAGENTA1 RED YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 221 ( 221 ) Summary = 13351 ( 13351 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 221 ( 221 ) FreeWire = 0 ( 0 ) FreeEdge = 6 ( 6 ) SharedEdge = 6452 ( 6452 )
|
||||
TOLERANCE : MaxTol = 0.01225213609 ( 0.01098786532 ) AvgTol = 0.0001816430452 ( 0.0001806163302 )
|
||||
LABELS : N0Labels = 232 ( 232 ) N1Labels = 0 ( 6150 ) N2Labels = 0 ( 0 ) TotalLabels = 232 ( 6382 ) NameLabels = 232 ( 347 ) ColorLabels = 227 ( 6382 ) LayerLabels = 227 ( 6382 )
|
||||
LABELS : N0Labels = 232 ( 232 ) N1Labels = 0 ( 6529 ) N2Labels = 0 ( 0 ) TotalLabels = 232 ( 6761 ) NameLabels = 232 ( 347 ) ColorLabels = 227 ( 6761 ) LayerLabels = 227 ( 6761 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = RED ( RED )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 ) Summary = 10670 ( 10670 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 5148 ( 5148 )
|
||||
TOLERANCE : MaxTol = 0.04931043567 ( 0.04931014771 ) AvgTol = 0.000378470309 ( 0.0003854574649 )
|
||||
LABELS : N0Labels = 186 ( 186 ) N1Labels = 0 ( 201 ) N2Labels = 0 ( 0 ) TotalLabels = 186 ( 387 ) NameLabels = 186 ( 186 ) ColorLabels = 186 ( 387 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 186 ( 186 ) N1Labels = 0 ( 569 ) N2Labels = 0 ( 0 ) TotalLabels = 186 ( 755 ) NameLabels = 186 ( 186 ) ColorLabels = 186 ( 755 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 215 ( 215 ) Summary = 3771 ( 3779 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 215 ( 215 ) FreeWire = 0 ( 4 ) FreeEdge = 8 ( 8 ) SharedEdge = 1666 ( 1670 )
|
||||
TOLERANCE : MaxTol = 0.6931734571 ( 0.6931734576 ) AvgTol = 0.009873021128 ( 0.009847667242 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 223 ( 1186 ) N2Labels = 0 ( 0 ) TotalLabels = 224 ( 1187 ) NameLabels = 224 ( 332 ) ColorLabels = 223 ( 1186 ) LayerLabels = 223 ( 1186 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 223 ( 1192 ) N2Labels = 0 ( 0 ) TotalLabels = 224 ( 1193 ) NameLabels = 224 ( 332 ) ColorLabels = 223 ( 1192 ) LayerLabels = 223 ( 1192 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = GREEN WHITE ( GREEN WHITE )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 178 ( 178 ) Summary = 2133 ( 2133 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 178 ( 178 ) FreeWire = 0 ( 0 ) FreeEdge = 1 ( 1 ) SharedEdge = 895 ( 895 )
|
||||
TOLERANCE : MaxTol = 0.4113920266 ( 0.4113920255 ) AvgTol = 0.004711547931 ( 0.004740618934 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 179 ( 547 ) N2Labels = 0 ( 0 ) TotalLabels = 180 ( 548 ) NameLabels = 180 ( 332 ) ColorLabels = 179 ( 547 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 179 ( 553 ) N2Labels = 0 ( 0 ) TotalLabels = 180 ( 554 ) NameLabels = 180 ( 332 ) ColorLabels = 179 ( 553 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 532 ( 532 ) Summary = 12701 ( 12702 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 532 ( 532 ) FreeWire = 0 ( 0 ) FreeEdge = 2 ( 2 ) SharedEdge = 5826 ( 5827 )
|
||||
TOLERANCE : MaxTol = 0.888818095 ( 0.8888180952 ) AvgTol = 0.02520281804 ( 0.02520274804 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 534 ( 3844 ) N2Labels = 0 ( 0 ) TotalLabels = 535 ( 3845 ) NameLabels = 535 ( 833 ) ColorLabels = 534 ( 3844 ) LayerLabels = 532 ( 3842 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 534 ( 4073 ) N2Labels = 0 ( 0 ) TotalLabels = 535 ( 4074 ) NameLabels = 535 ( 833 ) ColorLabels = 534 ( 4073 ) LayerLabels = 532 ( 4071 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = BLUE1 WHITE ( BLUE1 WHITE )
|
||||
|
@ -10,7 +10,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1521 ( 1521 ) Summary = 20232 ( 20232 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1521 ( 1521 ) FreeWire = 20 ( 20 ) FreeEdge = 118 ( 118 ) SharedEdge = 8549 ( 8549 )
|
||||
TOLERANCE : MaxTol = 0.9994545428 ( 0.9994545568 ) AvgTol = 0.05493298116 ( 0.05493334424 )
|
||||
LABELS : N0Labels = 1502 ( 1502 ) N1Labels = 60 ( 78 ) N2Labels = 0 ( 0 ) TotalLabels = 1562 ( 1580 ) NameLabels = 1562 ( 1580 ) ColorLabels = 1561 ( 1579 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1502 ( 1502 ) N1Labels = 60 ( 473 ) N2Labels = 0 ( 0 ) TotalLabels = 1562 ( 1975 ) NameLabels = 1562 ( 1580 ) ColorLabels = 1561 ( 1974 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = GOLD ( GOLD )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 523 ( 523 ) Summary = 5936 ( 5926 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 523 ( 523 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2485 ( 2485 )
|
||||
TOLERANCE : MaxTol = 0.1109937052 ( 0.111004803 ) AvgTol = 0.001890312889 ( 0.001893545105 )
|
||||
LABELS : N0Labels = 523 ( 523 ) N1Labels = 0 ( 441 ) N2Labels = 0 ( 0 ) TotalLabels = 523 ( 964 ) NameLabels = 523 ( 641 ) ColorLabels = 523 ( 964 ) LayerLabels = 523 ( 964 )
|
||||
LABELS : N0Labels = 523 ( 523 ) N1Labels = 0 ( 593 ) N2Labels = 0 ( 0 ) TotalLabels = 523 ( 1116 ) NameLabels = 523 ( 641 ) ColorLabels = 523 ( 1116 ) LayerLabels = 523 ( 1116 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = BLACK GREEN RED ( BLACK GREEN RED )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 1 ) Faces = 0 ( 1 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 240 ( 240 ) Summary = 7603 ( 7607 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 240 ( 240 ) FreeWire = 135 ( 139 ) FreeEdge = 1262 ( 1262 ) SharedEdge = 3013 ( 3013 )
|
||||
TOLERANCE : MaxTol = 0.03614106862 ( 0.03613204275 ) AvgTol = 0.0001652304146 ( 0.0001664949467 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 969 ( 2680 ) N2Labels = 0 ( 0 ) TotalLabels = 970 ( 2681 ) NameLabels = 970 ( 1302 ) ColorLabels = 969 ( 2680 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 969 ( 3028 ) N2Labels = 0 ( 0 ) TotalLabels = 970 ( 3029 ) NameLabels = 970 ( 1302 ) ColorLabels = 969 ( 3028 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 123 ( 123 ) Summary = 3349 ( 3349 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 123 ( 123 ) FreeWire = 7 ( 7 ) FreeEdge = 571 ( 571 ) SharedEdge = 1263 ( 1263 )
|
||||
TOLERANCE : MaxTol = 0.01306151266 ( 0.01306151266 ) AvgTol = 4.724224752e-005 ( 4.790122037e-005 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 675 ( 1360 ) N2Labels = 0 ( 0 ) TotalLabels = 676 ( 1361 ) NameLabels = 676 ( 745 ) ColorLabels = 675 ( 1360 ) LayerLabels = 584 ( 1185 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 675 ( 1417 ) N2Labels = 0 ( 0 ) TotalLabels = 676 ( 1418 ) NameLabels = 676 ( 745 ) ColorLabels = 675 ( 1417 ) LayerLabels = 584 ( 1236 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = WHITE YELLOW ( WHITE YELLOW )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 6 ( 8 ) Faces = 6 ( 8 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 223 ( 223 ) Summary = 4710 ( 4574 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 223 ( 223 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2166 ( 2092 )
|
||||
TOLERANCE : MaxTol = 0.991254355 ( 0.991254355 ) AvgTol = 0.01133191355 ( 0.01225911215 )
|
||||
LABELS : N0Labels = 223 ( 223 ) N1Labels = 0 ( 222 ) N2Labels = 0 ( 0 ) TotalLabels = 223 ( 445 ) NameLabels = 223 ( 389 ) ColorLabels = 223 ( 445 ) LayerLabels = 223 ( 445 )
|
||||
LABELS : N0Labels = 223 ( 223 ) N1Labels = 0 ( 256 ) N2Labels = 0 ( 0 ) TotalLabels = 223 ( 479 ) NameLabels = 223 ( 388 ) ColorLabels = 223 ( 479 ) LayerLabels = 223 ( 479 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = BLUE1 MAGENTA1 YELLOW ( BLUE1 MAGENTA1 YELLOW )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 770 ( 770 ) Summary = 12751 ( 12759 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 770 ( 770 ) FreeWire = 36 ( 36 ) FreeEdge = 232 ( 232 ) SharedEdge = 5541 ( 5545 )
|
||||
TOLERANCE : MaxTol = 0.9845041621 ( 0.9845038147 ) AvgTol = 0.00992720939 ( 0.009919874447 )
|
||||
LABELS : N0Labels = 880 ( 880 ) N1Labels = 0 ( 620 ) N2Labels = 0 ( 0 ) TotalLabels = 880 ( 1500 ) NameLabels = 880 ( 1500 ) ColorLabels = 844 ( 1500 ) LayerLabels = 844 ( 1500 )
|
||||
LABELS : N0Labels = 880 ( 880 ) N1Labels = 0 ( 2244 ) N2Labels = 0 ( 0 ) TotalLabels = 880 ( 3124 ) NameLabels = 880 ( 1500 ) ColorLabels = 844 ( 3124 ) LayerLabels = 844 ( 3124 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = BLACK ( BLACK )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 899 ( 899 ) Summary = 24030 ( 24038 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 899 ( 899 ) FreeWire = 366 ( 366 ) FreeEdge = 3783 ( 3783 ) SharedEdge = 9384 ( 9388 )
|
||||
TOLERANCE : MaxTol = 0.3151652209 ( 0.3151652209 ) AvgTol = 0.0007056494899 ( 0.0007458034854 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 3581 ( 7900 ) N2Labels = 0 ( 0 ) TotalLabels = 3582 ( 7901 ) NameLabels = 3582 ( 4454 ) ColorLabels = 3581 ( 7900 ) LayerLabels = 3581 ( 7900 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 3581 ( 9530 ) N2Labels = 0 ( 0 ) TotalLabels = 3582 ( 9531 ) NameLabels = 3582 ( 4454 ) ColorLabels = 3581 ( 9530 ) LayerLabels = 3581 ( 9530 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = TURQUOISE ( TURQUOISE WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 426 ( 426 ) Summary = 14321 ( 14321 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 426 ( 426 ) FreeWire = 265 ( 265 ) FreeEdge = 2465 ( 2465 ) SharedEdge = 5781 ( 5781 )
|
||||
TOLERANCE : MaxTol = 0.09805261731 ( 0.09805261731 ) AvgTol = 0.0005286623368 ( 0.0005262647535 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1739 ( 4511 ) N2Labels = 0 ( 0 ) TotalLabels = 1740 ( 4512 ) NameLabels = 1740 ( 2237 ) ColorLabels = 1739 ( 4511 ) LayerLabels = 1739 ( 4511 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1739 ( 5445 ) N2Labels = 0 ( 0 ) TotalLabels = 1740 ( 5446 ) NameLabels = 1740 ( 2237 ) ColorLabels = 1739 ( 5445 ) LayerLabels = 1739 ( 5445 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = TURQUOISE ( TURQUOISE WHITE )
|
||||
|
@ -1,7 +1,6 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
puts "TODO CR23096 ALL: COLORS : Faulty"
|
||||
puts "TODO CR26656 Linux: Error : 1 differences with reference data found"
|
||||
|
||||
|
||||
set filename 919-004-T02-01-FT-VL.igs
|
||||
@ -13,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 406 ( 406 ) Summary = 13718 ( 13718 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 406 ( 406 ) FreeWire = 275 ( 275 ) FreeEdge = 2361 ( 2361 ) SharedEdge = 5553 ( 5553 )
|
||||
TOLERANCE : MaxTol = 0.08309604195 ( 0.08309604195 ) AvgTol = 0.0004559007514 ( 0.0004699758829 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1614 ( 4301 ) N2Labels = 0 ( 0 ) TotalLabels = 1616 ( 4303 ) NameLabels = 1614 ( 2096 ) ColorLabels = 1614 ( 4302 ) LayerLabels = 1614 ( 4302 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1614 ( 5216 ) N2Labels = 0 ( 0 ) TotalLabels = 1616 ( 5218 ) NameLabels = 1614 ( 2096 ) ColorLabels = 1614 ( 5217 ) LayerLabels = 1614 ( 5217 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = TURQUOISE ( TURQUOISE WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 181 ( 181 ) Summary = 2235 ( 2235 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 181 ( 181 ) FreeWire = 3 ( 3 ) FreeEdge = 16 ( 16 ) SharedEdge = 934 ( 934 )
|
||||
TOLERANCE : MaxTol = 0.1814235482 ( 0.1814235485 ) AvgTol = 0.003745633978 ( 0.003756752925 )
|
||||
LABELS : N0Labels = 184 ( 359 ) N1Labels = 0 ( 3 ) N2Labels = 0 ( 0 ) TotalLabels = 184 ( 362 ) NameLabels = 184 ( 360 ) ColorLabels = 181 ( 187 ) LayerLabels = 181 ( 187 )
|
||||
LABELS : N0Labels = 184 ( 359 ) N1Labels = 0 ( 59 ) N2Labels = 0 ( 0 ) TotalLabels = 184 ( 418 ) NameLabels = 184 ( 360 ) ColorLabels = 181 ( 243 ) LayerLabels = 181 ( 243 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 3 )
|
||||
COLORS : Colors = WHITE ( BLACK WHITE YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 135 ( 135 ) Summary = 2223 ( 2223 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 135 ( 135 ) FreeWire = 0 ( 0 ) FreeEdge = 3 ( 3 ) SharedEdge = 974 ( 974 )
|
||||
TOLERANCE : MaxTol = 0.9794163281 ( 12.54323842 ) AvgTol = 0.02080508938 ( 0.1727731057 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 138 ( 758 ) N2Labels = 0 ( 0 ) TotalLabels = 139 ( 759 ) NameLabels = 139 ( 205 ) ColorLabels = 138 ( 758 ) LayerLabels = 138 ( 758 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 138 ( 1033 ) N2Labels = 0 ( 0 ) TotalLabels = 139 ( 1034 ) NameLabels = 139 ( 205 ) ColorLabels = 138 ( 1033 ) LayerLabels = 138 ( 1033 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = GOLD3 MAGENTA4 PLUM1 YELLOW2 ( GOLD3 MAGENTA4 PLUM1 YELLOW2 )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 771 ( 771 ) Summary = 15422 ( 15404 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 771 ( 771 ) FreeWire = 0 ( 0 ) FreeEdge = 1291 ( 1291 ) SharedEdge = 6301 ( 6303 )
|
||||
TOLERANCE : MaxTol = 0.9439922085 ( 0.944086605 ) AvgTol = 0.005963915093 ( 0.005983396104 )
|
||||
LABELS : N0Labels = 2062 ( 2062 ) N1Labels = 6 ( 1047 ) N2Labels = 0 ( 0 ) TotalLabels = 2068 ( 3109 ) NameLabels = 2062 ( 2062 ) ColorLabels = 2037 ( 3109 ) LayerLabels = 2037 ( 3109 )
|
||||
LABELS : N0Labels = 2062 ( 2062 ) N1Labels = 6 ( 1161 ) N2Labels = 0 ( 0 ) TotalLabels = 2068 ( 3223 ) NameLabels = 2062 ( 2062 ) ColorLabels = 2037 ( 3223 ) LayerLabels = 2037 ( 3223 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 4 )
|
||||
COLORS : Colors = BLACK MAGENTA1 RED ( BLACK MAGENTA1 RED WHITE )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 328 ( 328 ) Summary = 8546 ( 8546 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 328 ( 328 ) FreeWire = 53 ( 53 ) FreeEdge = 1431 ( 1431 ) SharedEdge = 3217 ( 3217 )
|
||||
TOLERANCE : MaxTol = 0.4274072109 ( 0.4274072101 ) AvgTol = 0.001821024602 ( 0.001852637256 )
|
||||
LABELS : N0Labels = 10 ( 10 ) N1Labels = 1565 ( 2565 ) N2Labels = 0 ( 0 ) TotalLabels = 1575 ( 2575 ) NameLabels = 1575 ( 1851 ) ColorLabels = 1570 ( 2570 ) LayerLabels = 1570 ( 2570 )
|
||||
LABELS : N0Labels = 10 ( 10 ) N1Labels = 1565 ( 2865 ) N2Labels = 0 ( 0 ) TotalLabels = 1575 ( 2875 ) NameLabels = 1575 ( 1851 ) ColorLabels = 1570 ( 2870 ) LayerLabels = 1570 ( 2870 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 8 )
|
||||
COLORS : Colors = BLUE1 GREEN GREEN4 MEDIUMORCHID RED TURQUOISE1 WHITE YELLOW ( BLUE1 GREEN GREEN4 MEDIUMORCHID RED TURQUOISE1 WHITE YELLOW )
|
||||
|
@ -1,6 +1,6 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
puts "TODO CR25013 ALL: Error : 1 differences with reference data found"
|
||||
puts "TODO CR25013 ALL: Error : 2 differences with reference data found"
|
||||
|
||||
set LinuxDiff 1
|
||||
set filename pro5101.igs
|
||||
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 311 ) Summary = 23710 ( 11832 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 622 ) FreeWire = 816 ( 816 ) FreeEdge = 4824 ( 4824 ) SharedEdge = 10126 ( 5051 )
|
||||
TOLERANCE : MaxTol = 0.6427268663 ( 4.452116544 ) AvgTol = 0.01239717192 ( 0.01380706073 )
|
||||
LABELS : N0Labels = 7 ( 7 ) N1Labels = 379 ( 1004 ) N2Labels = 0 ( 0 ) TotalLabels = 386 ( 1011 ) NameLabels = 386 ( 1010 ) ColorLabels = 381 ( 1006 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 7 ( 7 ) N1Labels = 379 ( 3264 ) N2Labels = 0 ( 0 ) TotalLabels = 386 ( 3271 ) NameLabels = 386 ( 1010 ) ColorLabels = 381 ( 3266 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -16,7 +16,7 @@ CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) Summary = 12798 ( 12800 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) FreeWire = 19 ( 21 ) FreeEdge = 1864 ( 1864 ) SharedEdge = 4957 ( 4957 )
|
||||
TOLERANCE : MaxTol = 0.7510769849 ( 0.7510769849 ) AvgTol = 0.006853010548 ( 0.007168795519 )
|
||||
LABELS : N0Labels = 65 ( 65 ) N1Labels = 2112 ( 4067 ) N2Labels = 0 ( 0 ) TotalLabels = 2177 ( 4132 ) NameLabels = 2177 ( 2778 ) ColorLabels = 2123 ( 4082 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 65 ( 65 ) N1Labels = 2112 ( 4443 ) N2Labels = 0 ( 0 ) TotalLabels = 2177 ( 4508 ) NameLabels = 2177 ( 2778 ) ColorLabels = 2123 ( 4458 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 4 )
|
||||
COLORS : Colors = BLUE1 WHITE YELLOW ( BLUE1 GREEN WHITE YELLOW )
|
||||
|
@ -10,10 +10,10 @@ set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 56 ( 12 ) Summary = 56 ( 12 )
|
||||
CHECKSHAPE : Wires = 2 ( 1 ) Faces = 2 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 1106 ) Summary = 59777 ( 25981 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 2342 ) FreeWire = 2328 ( 2328 ) FreeEdge = 14016 ( 14016 ) SharedEdge = 24558 ( 10692 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 1106 ) Summary = 59777 ( 25968 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 2342 ) FreeWire = 2328 ( 2328 ) FreeEdge = 14016 ( 14016 ) SharedEdge = 24558 ( 10686 )
|
||||
TOLERANCE : MaxTol = 0.9711309062 ( 0.9711309063 ) AvgTol = 0.01916076754 ( 0.01948753951 )
|
||||
LABELS : N0Labels = 250 ( 250 ) N1Labels = 2268 ( 3202 ) N2Labels = 0 ( 0 ) TotalLabels = 2518 ( 3452 ) NameLabels = 2518 ( 3452 ) ColorLabels = 2512 ( 3446 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 250 ( 250 ) N1Labels = 2268 ( 3204 ) N2Labels = 0 ( 0 ) TotalLabels = 2518 ( 3454 ) NameLabels = 2518 ( 3454 ) ColorLabels = 2512 ( 3448 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = CYAN1 LIGHTPINK PALEGOLDENROD ROSYBROWN ( CYAN1 LIGHTPINK PALEGOLDENROD ROSYBROWN )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4004 ( 4004 ) Summary = 46702 ( 46701 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4004 ( 4004 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 19350 ( 19350 )
|
||||
TOLERANCE : MaxTol = 0.01077402956 ( 0.005387073003 ) AvgTol = 4.979806751e-006 ( 9.076797721e-006 )
|
||||
LABELS : N0Labels = 4004 ( 4004 ) N1Labels = 0 ( 647 ) N2Labels = 0 ( 0 ) TotalLabels = 4004 ( 4651 ) NameLabels = 4004 ( 4004 ) ColorLabels = 248 ( 895 ) LayerLabels = 3366 ( 4013 )
|
||||
LABELS : N0Labels = 4004 ( 4004 ) N1Labels = 0 ( 916 ) N2Labels = 0 ( 0 ) TotalLabels = 4004 ( 4920 ) NameLabels = 4004 ( 4004 ) ColorLabels = 248 ( 1164 ) LayerLabels = 3366 ( 4282 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = BLACK RED YELLOW ( BLACK RED YELLOW )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 8 ( 11 ) Faces = 8 ( 7 ) Shells = 0 ( 0 ) S
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4729 ( 4729 ) Summary = 63158 ( 63146 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4729 ( 4729 ) FreeWire = 18 ( 18 ) FreeEdge = 452 ( 452 ) SharedEdge = 26798 ( 26797 )
|
||||
TOLERANCE : MaxTol = 0.9804479161 ( 0.9805459497 ) AvgTol = 0.01153089031 ( 0.01154870945 )
|
||||
LABELS : N0Labels = 5089 ( 5165 ) N1Labels = 26 ( 3688 ) N2Labels = 0 ( 0 ) TotalLabels = 5115 ( 8853 ) NameLabels = 5089 ( 5165 ) ColorLabels = 5086 ( 8777 ) LayerLabels = 5086 ( 8777 )
|
||||
LABELS : N0Labels = 5089 ( 5165 ) N1Labels = 26 ( 3878 ) N2Labels = 0 ( 0 ) TotalLabels = 5115 ( 9043 ) NameLabels = 5089 ( 5165 ) ColorLabels = 5086 ( 8967 ) LayerLabels = 5086 ( 8967 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = BLUE1 CYAN1 GREEN ( BLUE1 CYAN1 GREEN )
|
||||
|
@ -1,5 +1,6 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
puts "TODO CR23096 ALL: LAYERS : Faulty"
|
||||
|
||||
|
||||
set filename PRO11414-1.igs
|
||||
@ -11,11 +12,11 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 309 ( 309 ) Summary = 14820 ( 14815 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 309 ( 309 ) FreeWire = 22 ( 22 ) FreeEdge = 1789 ( 1789 ) SharedEdge = 6249 ( 6249 )
|
||||
TOLERANCE : MaxTol = 0.75178756 ( 0.7517875657 ) AvgTol = 0.001674556495 ( 0.001679070069 )
|
||||
LABELS : N0Labels = 2030 ( 2204 ) N1Labels = 8 ( 341 ) N2Labels = 0 ( 0 ) TotalLabels = 2038 ( 2545 ) NameLabels = 2030 ( 2204 ) ColorLabels = 2006 ( 2371 ) LayerLabels = 2006 ( 2371 )
|
||||
LABELS : N0Labels = 2030 ( 2204 ) N1Labels = 8 ( 673 ) N2Labels = 0 ( 0 ) TotalLabels = 2038 ( 2877 ) NameLabels = 2030 ( 2204 ) ColorLabels = 2006 ( 2703 ) LayerLabels = 2006 ( 2703 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 12 ( 12 )
|
||||
COLORS : Colors = GRAY61 GREEN LIGHTSALMON2 MAGENTA1 MAGENTA3 RED ROSYBROWN SPRINGGREEN4 TURQUOISE TURQUOISE2 WHITE YELLOW ( GRAY61 GREEN LIGHTSALMON2 MAGENTA1 MAGENTA3 RED ROSYBROWN SPRINGGREEN4 TURQUOISE TURQUOISE2 WHITE YELLOW )
|
||||
NLAYERS : NLayers = 5 ( 5 )
|
||||
LAYERS : Layers = 107 109 152 155 156 ( 107 109 152 155 156 )
|
||||
NLAYERS : NLayers = 5 ( 6 )
|
||||
LAYERS : Layers = 107 109 152 155 156 ( 107 109 150 152 155 156 )
|
||||
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
puts "TODO CR23096 ALL: DATA : Faulty"
|
||||
puts "TODO CR23096 ALL: TPSTAT : Faulty"
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
puts "TODO CR26656 Linux: Error : 1 differences with reference data found"
|
||||
|
||||
|
||||
set filename support_rampe.igs
|
||||
@ -14,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 169 ( 169 ) Summary = 5348 ( 5348 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 169 ( 169 ) FreeWire = 49 ( 49 ) FreeEdge = 945 ( 945 ) SharedEdge = 2041 ( 2041 )
|
||||
TOLERANCE : MaxTol = 0.1765497108 ( 0.1765497101 ) AvgTol = 0.0004116969813 ( 0.0004153236787 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 981 ( 2033 ) N2Labels = 0 ( 0 ) TotalLabels = 982 ( 2034 ) NameLabels = 982 ( 1142 ) ColorLabels = 981 ( 2033 ) LayerLabels = 981 ( 2033 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 981 ( 2201 ) N2Labels = 0 ( 0 ) TotalLabels = 982 ( 2202 ) NameLabels = 982 ( 1142 ) ColorLabels = 981 ( 2201 ) LayerLabels = 981 ( 2201 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
COLORS : Colors = BLUE1 CYAN1 GREEN MAGENTA1 WHITE YELLOW ( BLUE1 CYAN1 GREEN MAGENTA1 WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 6 ) Summary = 743 ( 624 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 ) FreeWire = 40 ( 40 ) FreeEdge = 188 ( 188 ) SharedEdge = 296 ( 242 )
|
||||
TOLERANCE : MaxTol = 0.2600681266 ( 7.241630725 ) AvgTol = 0.03297721346 ( 0.4073375928 )
|
||||
LABELS : N0Labels = 7 ( 7 ) N1Labels = 44 ( 90 ) N2Labels = 0 ( 0 ) TotalLabels = 51 ( 97 ) NameLabels = 51 ( 97 ) ColorLabels = 50 ( 96 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 7 ( 7 ) N1Labels = 44 ( 98 ) N2Labels = 0 ( 0 ) TotalLabels = 51 ( 105 ) NameLabels = 51 ( 97 ) ColorLabels = 50 ( 104 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = RED WHITE ( RED WHITE )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) Summary = 2504 ( 2504 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) FreeWire = 0 ( 0 ) FreeEdge = 6 ( 6 ) SharedEdge = 1038 ( 1038 )
|
||||
TOLERANCE : MaxTol = 0.08198937243 ( 0.08606507237 ) AvgTol = 0.003492787826 ( 0.004037916818 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 912 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 913 ) NameLabels = 215 ( 311 ) ColorLabels = 214 ( 912 ) LayerLabels = 214 ( 912 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 1233 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 1234 ) NameLabels = 215 ( 311 ) ColorLabels = 214 ( 1233 ) LayerLabels = 214 ( 1233 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 5 )
|
||||
COLORS : Colors = BLUE1 GRAY73 WHITE YELLOW ( BLUE1 GRAY73 GREEN WHITE YELLOW )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 47 ( 47 ) Summary = 1536 ( 1536 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 47 ( 47 ) FreeWire = 1 ( 1 ) FreeEdge = 2 ( 2 ) SharedEdge = 719 ( 719 )
|
||||
TOLERANCE : MaxTol = 0.4901518209 ( 0.4901518209 ) AvgTol = 0.01740968658 ( 0.01741670629 )
|
||||
LABELS : N0Labels = 48 ( 48 ) N1Labels = 0 ( 284 ) N2Labels = 0 ( 0 ) TotalLabels = 48 ( 332 ) NameLabels = 48 ( 77 ) ColorLabels = 47 ( 332 ) LayerLabels = 47 ( 332 )
|
||||
LABELS : N0Labels = 48 ( 48 ) N1Labels = 0 ( 394 ) N2Labels = 0 ( 0 ) TotalLabels = 48 ( 442 ) NameLabels = 48 ( 77 ) ColorLabels = 47 ( 442 ) LayerLabels = 47 ( 442 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = MAGENTA1 ( MAGENTA1 YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1177 ( 1177 ) Summary = 18232 ( 18230 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1177 ( 1177 ) FreeWire = 5 ( 5 ) FreeEdge = 714 ( 714 ) SharedEdge = 7614 ( 7614 )
|
||||
TOLERANCE : MaxTol = 0.8261873294 ( 0.8261873283 ) AvgTol = 0.01075755448 ( 0.01076339213 )
|
||||
LABELS : N0Labels = 1884 ( 1885 ) N1Labels = 0 ( 986 ) N2Labels = 0 ( 0 ) TotalLabels = 1884 ( 2871 ) NameLabels = 1884 ( 1885 ) ColorLabels = 1873 ( 2870 ) LayerLabels = 1873 ( 2870 )
|
||||
LABELS : N0Labels = 1884 ( 1885 ) N1Labels = 0 ( 1036 ) N2Labels = 0 ( 0 ) TotalLabels = 1884 ( 2921 ) NameLabels = 1884 ( 1885 ) ColorLabels = 1873 ( 2920 ) LayerLabels = 1873 ( 2920 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 7 ( 7 )
|
||||
COLORS : Colors = BLACK BLUE1 CYAN1 GREEN RED WHITE YELLOW ( BLACK BLUE1 CYAN1 GREEN RED WHITE YELLOW )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) Summary = 21878 ( 21886 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) FreeWire = 16 ( 17 ) FreeEdge = 625 ( 625 ) SharedEdge = 9294 ( 9298 )
|
||||
TOLERANCE : MaxTol = 0.9993613167 ( 0.9993613167 ) AvgTol = 0.01637966588 ( 0.01644116474 )
|
||||
LABELS : N0Labels = 3 ( 3 ) N1Labels = 1632 ( 3592 ) N2Labels = 0 ( 0 ) TotalLabels = 1635 ( 3595 ) NameLabels = 1635 ( 2037 ) ColorLabels = 1632 ( 3594 ) LayerLabels = 1632 ( 3594 )
|
||||
LABELS : N0Labels = 3 ( 3 ) N1Labels = 1632 ( 3631 ) N2Labels = 0 ( 0 ) TotalLabels = 1635 ( 3634 ) NameLabels = 1635 ( 2037 ) ColorLabels = 1632 ( 3633 ) LayerLabels = 1632 ( 3633 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 4 )
|
||||
COLORS : Colors = BLUE1 GREEN MAGENTA1 ( BLUE1 GREEN MAGENTA1 RED )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 211 ( 211 ) Summary = 12556 ( 12569 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 211 ( 211 ) FreeWire = 255 ( 267 ) FreeEdge = 3643 ( 3643 ) SharedEdge = 5784 ( 5784 )
|
||||
TOLERANCE : MaxTol = 0.9498862984 ( 0.9498862984 ) AvgTol = 0.008210118978 ( 0.008216800661 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 454 ( 1912 ) N2Labels = 0 ( 0 ) TotalLabels = 457 ( 1918 ) NameLabels = 393 ( 870 ) ColorLabels = 454 ( 1909 ) LayerLabels = 386 ( 1892 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 454 ( 1943 ) N2Labels = 0 ( 0 ) TotalLabels = 457 ( 1949 ) NameLabels = 393 ( 870 ) ColorLabels = 454 ( 1940 ) LayerLabels = 386 ( 1923 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 7 )
|
||||
COLORS : Colors = CYAN1 GREEN MAGENTA1 RED WHITE ( BLUE1 CYAN1 GREEN MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 5 ( 6 ) Faces = 5 ( 6 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3499 ( 3499 ) Summary = 43148 ( 43109 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3499 ( 3499 ) FreeWire = 0 ( 0 ) FreeEdge = 164 ( 164 ) SharedEdge = 18139 ( 18117 )
|
||||
TOLERANCE : MaxTol = 0.9816000285 ( 5.284023931 ) AvgTol = 0.02460215735 ( 0.02803309188 )
|
||||
LABELS : N0Labels = 12 ( 30 ) N1Labels = 3661 ( 3664 ) N2Labels = 0 ( 0 ) TotalLabels = 3673 ( 3694 ) NameLabels = 1379 ( 3694 ) ColorLabels = 3661 ( 3660 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 12 ( 30 ) N1Labels = 3661 ( 3676 ) N2Labels = 0 ( 0 ) TotalLabels = 3673 ( 3706 ) NameLabels = 1379 ( 3694 ) ColorLabels = 3661 ( 3672 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 10 ( 11 )
|
||||
COLORS : Colors = BLUE1 DEEPSKYBLUE2 DODGERBLUE2 GREEN MAGENTA1 ORANGE ORANGERED RED TURQUOISE4 WHITE ( BLUE1 DEEPSKYBLUE2 DODGERBLUE2 GREEN MAGENTA1 ORANGE ORANGERED RED TURQUOISE4 WHITE YELLOW )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 91 ( 91 ) Summary = 24023 ( 23781 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 91 ( 91 ) FreeWire = 304 ( 372 ) FreeEdge = 7210 ( 7210 ) SharedEdge = 10377 ( 10271 )
|
||||
TOLERANCE : MaxTol = 0.0779303086 ( 0.07793030858 ) AvgTol = 6.701253429e-05 ( 0.0001033335359 )
|
||||
LABELS : N0Labels = 4 ( 38 ) N1Labels = 2509 ( 4250 ) N2Labels = 0 ( 0 ) TotalLabels = 2513 ( 4288 ) NameLabels = 2357 ( 2884 ) ColorLabels = 2509 ( 4215 ) LayerLabels = 249 ( 515 )
|
||||
LABELS : N0Labels = 4 ( 38 ) N1Labels = 2509 ( 4252 ) N2Labels = 0 ( 0 ) TotalLabels = 2513 ( 4290 ) NameLabels = 2357 ( 2884 ) ColorLabels = 2509 ( 4217 ) LayerLabels = 249 ( 515 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 7 )
|
||||
COLORS : Colors = BLUE1 GREEN MAGENTA1 RED WHITE YELLOW ( BLUE1 CYAN1 GREEN MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 3 ) Faces = 0 ( 3 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) Summary = 38832 ( 38834 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) FreeWire = 516 ( 528 ) FreeEdge = 6208 ( 6208 ) SharedEdge = 15307 ( 15304 )
|
||||
TOLERANCE : MaxTol = 0.3053256329 ( 0.4653265763 ) AvgTol = 0.0008083573819 ( 0.0008563940583 )
|
||||
LABELS : N0Labels = 5 ( 5 ) N1Labels = 5689 ( 12405 ) N2Labels = 0 ( 0 ) TotalLabels = 5694 ( 12410 ) NameLabels = 5694 ( 7040 ) ColorLabels = 5689 ( 12409 ) LayerLabels = 5689 ( 12409 )
|
||||
LABELS : N0Labels = 5 ( 5 ) N1Labels = 5689 ( 14639 ) N2Labels = 0 ( 0 ) TotalLabels = 5694 ( 14644 ) NameLabels = 5694 ( 7040 ) ColorLabels = 5689 ( 14643 ) LayerLabels = 5689 ( 14643 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = TURQUOISE WHITE ( TURQUOISE WHITE )
|
||||
|
@ -13,8 +13,8 @@ set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 69 ( 41 ) Summary = 69 ( 41 )
|
||||
CHECKSHAPE : Wires = 8 ( 5 ) Faces = 8 ( 5 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 2314 ) Summary = 112057 ( 71781 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 3592 ) FreeWire = 4024 ( 4024 ) FreeEdge = 28849 ( 28849 ) SharedEdge = 44964 ( 28799 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 2314 ) Summary = 112057 ( 71753 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 3592 ) FreeWire = 4024 ( 4024 ) FreeEdge = 28849 ( 28849 ) SharedEdge = 44964 ( 28785 )
|
||||
TOLERANCE : MaxTol = 0.9133007093 ( 0.9133008813 ) AvgTol = 0.005629101837 ( 0.005904201197 )
|
||||
LABELS : N0Labels = 24 ( 24 ) N1Labels = 5153 ( 6559 ) N2Labels = 0 ( 0 ) TotalLabels = 5177 ( 6583 ) NameLabels = 5177 ( 6583 ) ColorLabels = 5153 ( 6559 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 253 ( 253 ) Summary = 5359 ( 5363 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 253 ( 253 ) FreeWire = 7 ( 10 ) FreeEdge = 78 ( 78 ) SharedEdge = 2412 ( 2412 )
|
||||
TOLERANCE : MaxTol = 0.04838312754 ( 0.0483782783 ) AvgTol = 0.002925020972 ( 0.002891060102 )
|
||||
LABELS : N0Labels = 8 ( 8 ) N1Labels = 269 ( 2591 ) N2Labels = 0 ( 0 ) TotalLabels = 277 ( 2599 ) NameLabels = 277 ( 384 ) ColorLabels = 272 ( 2597 ) LayerLabels = 272 ( 2597 )
|
||||
LABELS : N0Labels = 8 ( 8 ) N1Labels = 269 ( 2700 ) N2Labels = 0 ( 0 ) TotalLabels = 277 ( 2708 ) NameLabels = 277 ( 384 ) ColorLabels = 272 ( 2706 ) LayerLabels = 272 ( 2706 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 4 )
|
||||
COLORS : Colors = BLUE1 WHITE YELLOW ( BLUE1 GREEN WHITE YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2639 ( 2634 ) Summary = 64362 ( 64317 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2639 ( 2639 ) FreeWire = 1027 ( 1027 ) FreeEdge = 10489 ( 10489 ) SharedEdge = 24209 ( 24190 )
|
||||
TOLERANCE : MaxTol = 0.05705560511 ( 0.05705560511 ) AvgTol = 0.0002545958154 ( 0.0002529561285 )
|
||||
LABELS : N0Labels = 54 ( 54 ) N1Labels = 10590 ( 24663 ) N2Labels = 0 ( 0 ) TotalLabels = 10644 ( 24717 ) NameLabels = 10644 ( 13414 ) ColorLabels = 10590 ( 24715 ) LayerLabels = 7 ( 15 )
|
||||
LABELS : N0Labels = 54 ( 54 ) N1Labels = 10590 ( 27260 ) N2Labels = 0 ( 0 ) TotalLabels = 10644 ( 27314 ) NameLabels = 10644 ( 13414 ) ColorLabels = 10590 ( 27312 ) LayerLabels = 7 ( 18 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 8 )
|
||||
COLORS : Colors = BLUE1 CYAN1 GREEN GREEN3 MAGENTA1 RED WHITE YELLOW ( BLUE1 CYAN1 GREEN GREEN3 MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -14,7 +14,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 78 ( 78 ) Summary = 5036 ( 5295 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 78 ( 78 ) FreeWire = 75 ( 334 ) FreeEdge = 1251 ( 1251 ) SharedEdge = 1965 ( 1965 )
|
||||
TOLERANCE : MaxTol = 0.2578298329 ( 0.2578045038 ) AvgTol = 0.001358353951 ( 0.00164678188 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 880 ( 1446 ) N2Labels = 0 ( 0 ) TotalLabels = 881 ( 1447 ) NameLabels = 881 ( 1008 ) ColorLabels = 880 ( 1446 ) LayerLabels = 858 ( 1419 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 880 ( 1545 ) N2Labels = 0 ( 0 ) TotalLabels = 881 ( 1546 ) NameLabels = 881 ( 1008 ) ColorLabels = 880 ( 1545 ) LayerLabels = 858 ( 1518 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 7 )
|
||||
COLORS : Colors = DODGERBLUE2 GREEN MAGENTA3 TURQUOISE2 WHITE ( DODGERBLUE2 GRAY80 GREEN MAGENTA3 TURQUOISE2 WHITE YELLOW3 )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 96 ( 96 ) Summary = 2333 ( 2333 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 96 ( 96 ) FreeWire = 14 ( 14 ) FreeEdge = 360 ( 360 ) SharedEdge = 871 ( 871 )
|
||||
TOLERANCE : MaxTol = 0.9808242672 ( 0.9808242374 ) AvgTol = 0.004966469755 ( 0.004962254462 )
|
||||
LABELS : N0Labels = 4 ( 4 ) N1Labels = 422 ( 732 ) N2Labels = 0 ( 0 ) TotalLabels = 426 ( 736 ) NameLabels = 426 ( 528 ) ColorLabels = 422 ( 732 ) LayerLabels = 422 ( 732 )
|
||||
LABELS : N0Labels = 4 ( 4 ) N1Labels = 422 ( 771 ) N2Labels = 0 ( 0 ) TotalLabels = 426 ( 775 ) NameLabels = 426 ( 528 ) ColorLabels = 422 ( 771 ) LayerLabels = 422 ( 771 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 8 )
|
||||
COLORS : Colors = BLUE1 GREEN3 RED TURQUOISE1 WHITE YELLOW ( BLUE1 GREEN3 GREEN4 MEDIUMORCHID RED TURQUOISE1 WHITE YELLOW )
|
||||
|
@ -13,7 +13,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 854 ( 702 ) Summary = 25375 ( 23837 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 854 ( 854 ) FreeWire = 9 ( 31 ) FreeEdge = 3865 ( 3865 ) SharedEdge = 9820 ( 9202 )
|
||||
TOLERANCE : MaxTol = 0.9589015104 ( 0.9589015104 ) AvgTol = 0.01827507861 ( 0.01834335655 )
|
||||
LABELS : N0Labels = 33 ( 33 ) N1Labels = 4502 ( 6687 ) N2Labels = 0 ( 0 ) TotalLabels = 4535 ( 6720 ) NameLabels = 4535 ( 4624 ) ColorLabels = 4522 ( 6707 ) LayerLabels = 4281 ( 6430 )
|
||||
LABELS : N0Labels = 33 ( 33 ) N1Labels = 4502 ( 6695 ) N2Labels = 0 ( 0 ) TotalLabels = 4535 ( 6728 ) NameLabels = 4535 ( 4624 ) ColorLabels = 4522 ( 6715 ) LayerLabels = 4281 ( 6430 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 9 )
|
||||
COLORS : Colors = BLUE1 CYAN1 GREEN GREEN3 MAGENTA1 RED WHITE YELLOW ( BLUE1 CYAN1 GRAY80 GREEN GREEN3 MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -16,7 +16,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 ) Summary = 9601 ( 9691 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 ) FreeWire = 200 ( 290 ) FreeEdge = 2010 ( 2010 ) SharedEdge = 4167 ( 4167 )
|
||||
TOLERANCE : MaxTol = 0.5957823778 ( 0.5957823778 ) AvgTol = 0.002462709632 ( 0.002802777852 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 657 ( 1422 ) N2Labels = 0 ( 0 ) TotalLabels = 659 ( 1424 ) NameLabels = 659 ( 1008 ) ColorLabels = 657 ( 1422 ) LayerLabels = 440 ( 1100 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 657 ( 1428 ) N2Labels = 0 ( 0 ) TotalLabels = 659 ( 1430 ) NameLabels = 659 ( 1008 ) ColorLabels = 657 ( 1428 ) LayerLabels = 440 ( 1106 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 9 ( 10 )
|
||||
COLORS : Colors = BLUE1 BURLYWOOD1 CYAN1 DEEPSKYBLUE1 GREEN MAGENTA1 RED WHITE YELLOW ( BLUE1 BURLYWOOD1 CYAN1 DEEPSKYBLUE1 GREEN LEMONCHIFFON1 MAGENTA1 RED WHITE YELLOW )
|
||||
|
@ -16,7 +16,7 @@ CHECKSHAPE : Wires = 1 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 117 ( 117 ) Summary = 9970 ( 10003 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 117 ( 117 ) FreeWire = 60 ( 93 ) FreeEdge = 2720 ( 2720 ) SharedEdge = 3521 ( 3521 )
|
||||
TOLERANCE : MaxTol = 0.7859817704 ( 0.7859817704 ) AvgTol = 0.005733330289 ( 0.006491446419 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 2639 ( 3216 ) N2Labels = 0 ( 0 ) TotalLabels = 2641 ( 3218 ) NameLabels = 2641 ( 2850 ) ColorLabels = 2639 ( 3216 ) LayerLabels = 2607 ( 3179 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 2639 ( 3369 ) N2Labels = 0 ( 0 ) TotalLabels = 2641 ( 3371 ) NameLabels = 2641 ( 2850 ) ColorLabels = 2639 ( 3369 ) LayerLabels = 2607 ( 3332 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 7 ( 9 )
|
||||
COLORS : Colors = CYAN1 DARKOLIVEGREEN2 GRAY67 LIGHTSKYBLUE1 MAGENTA3 MEDIUMPURPLE1 TAN1 ( CYAN1 DARKOLIVEGREEN2 GRAY67 HONEYDEW LIGHTSKYBLUE1 MAGENTA3 MEDIUMPURPLE1 PALETURQUOISE1 TAN1 )
|
||||
|
@ -17,7 +17,7 @@ CHECKSHAPE : Wires = 1 ( 1 ) Faces = 3 ( 2 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 421 ( 159 ) Summary = 7850 ( 4452 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 421 ( 419 ) FreeWire = 66 ( 114 ) FreeEdge = 430 ( 430 ) SharedEdge = 3347 ( 1892 )
|
||||
TOLERANCE : MaxTol = 3.181671051 ( 2716.882548 ) AvgTol = 0.008547757257 ( 3.678737151 )
|
||||
LABELS : N0Labels = 3 ( 3 ) N1Labels = 325 ( 1665 ) N2Labels = 0 ( 0 ) TotalLabels = 328 ( 1668 ) NameLabels = 328 ( 425 ) ColorLabels = 325 ( 1665 ) LayerLabels = 193 ( 1453 )
|
||||
LABELS : N0Labels = 3 ( 3 ) N1Labels = 325 ( 1841 ) N2Labels = 0 ( 0 ) TotalLabels = 328 ( 1844 ) NameLabels = 328 ( 425 ) ColorLabels = 325 ( 1841 ) LayerLabels = 193 ( 1576 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 7 )
|
||||
COLORS : Colors = GREEN MATRABLUE RED RED4 WHITE YELLOW ( GREEN MAGENTA1 MATRABLUE RED RED4 WHITE YELLOW )
|
||||
|
@ -16,7 +16,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 79 ( 79 ) Summary = 3800 ( 3951 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 79 ( 79 ) FreeWire = 79 ( 230 ) FreeEdge = 865 ( 865 ) SharedEdge = 1481 ( 1481 )
|
||||
TOLERANCE : MaxTol = 0.06847151261 ( 0.8635005927 ) AvgTol = 0.00133710651 ( 0.003525405269 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 596 ( 1004 ) N2Labels = 0 ( 0 ) TotalLabels = 597 ( 1005 ) NameLabels = 597 ( 745 ) ColorLabels = 596 ( 1004 ) LayerLabels = 577 ( 985 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 596 ( 1177 ) N2Labels = 0 ( 0 ) TotalLabels = 597 ( 1178 ) NameLabels = 597 ( 745 ) ColorLabels = 596 ( 1177 ) LayerLabels = 577 ( 1158 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 7 )
|
||||
COLORS : Colors = DODGERBLUE2 GREEN MAGENTA3 TURQUOISE2 WHITE ( DODGERBLUE2 GRAY80 GREEN MAGENTA3 TURQUOISE2 WHITE YELLOW3 )
|
||||
|
@ -16,7 +16,7 @@ CHECKSHAPE : Wires = 4 ( 4 ) Faces = 4 ( 4 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) Summary = 22215 ( 22296 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) FreeWire = 96 ( 170 ) FreeEdge = 1061 ( 1061 ) SharedEdge = 9271 ( 9280 )
|
||||
TOLERANCE : MaxTol = 0.8099726869 ( 1.367966665 ) AvgTol = 0.008043971398 ( 0.008388581449 )
|
||||
LABELS : N0Labels = 27 ( 27 ) N1Labels = 2100 ( 5101 ) N2Labels = 0 ( 0 ) TotalLabels = 2127 ( 5128 ) NameLabels = 2127 ( 2596 ) ColorLabels = 2114 ( 5127 ) LayerLabels = 2114 ( 5127 )
|
||||
LABELS : N0Labels = 27 ( 27 ) N1Labels = 2100 ( 6250 ) N2Labels = 0 ( 0 ) TotalLabels = 2127 ( 6277 ) NameLabels = 2127 ( 2596 ) ColorLabels = 2114 ( 6276 ) LayerLabels = 2114 ( 6276 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 11 ( 12 )
|
||||
COLORS : Colors = BLUE1 CYAN1 CYAN2 DARKGOLDENROD GREEN MAGENTA1 PALEVIOLETRED1 RED TURQUOISE2 WHITE YELLOW ( BLUE1 CYAN1 CYAN2 DARKGOLDENROD GRAY53 GREEN MAGENTA1 PALEVIOLETRED1 RED TURQUOISE2 WHITE YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) Summary = 158096 ( 158092 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 72656 ( 72654 )
|
||||
TOLERANCE : MaxTol = 0.9560441943 ( 0.9560441934 ) AvgTol = 0.001956426418 ( 0.001954522593 )
|
||||
LABELS : N0Labels = 6500 ( 6500 ) N1Labels = 0 ( 25540 ) N2Labels = 0 ( 0 ) TotalLabels = 6500 ( 32040 ) NameLabels = 6500 ( 6500 ) ColorLabels = 6500 ( 32040 ) LayerLabels = 6500 ( 32040 )
|
||||
LABELS : N0Labels = 6500 ( 6500 ) N1Labels = 0 ( 25582 ) N2Labels = 0 ( 0 ) TotalLabels = 6500 ( 32082 ) NameLabels = 6500 ( 6500 ) ColorLabels = 6500 ( 32082 ) LayerLabels = 6500 ( 32082 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = YELLOW ( YELLOW )
|
||||
|
@ -8,9 +8,9 @@ set filename Z8M6SAT.stp
|
||||
set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
TPSTAT : Faulties = 3 ( 0 ) Warnings = 944 ( 3168 ) Summary = 947 ( 3168 )
|
||||
CHECKSHAPE : Wires = 50 ( 41 ) Faces = 50 ( 48 ) Shells = 0 ( 2 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 28 ( 28 ) Shell = 768 ( 30 ) Face = 3240 ( 3239 ) Summary = 29374 ( 28630 )
|
||||
STATSHAPE : Solid = 28 ( 28 ) Shell = 768 ( 30 ) Face = 3240 ( 3239 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 12587 ( 12579 )
|
||||
CHECKSHAPE : Wires = 52 ( 41 ) Faces = 52 ( 48 ) Shells = 0 ( 2 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 28 ( 28 ) Shell = 768 ( 30 ) Face = 3240 ( 3239 ) Summary = 29369 ( 28626 )
|
||||
STATSHAPE : Solid = 28 ( 28 ) Shell = 768 ( 30 ) Face = 3240 ( 3239 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 12583 ( 12576 )
|
||||
TOLERANCE : MaxTol = 15.00300076 ( 20.46526799 ) AvgTol = 0.02248945623 ( 0.03724082116 )
|
||||
LABELS : N0Labels = 3 ( 3 ) N1Labels = 2 ( 2 ) N2Labels = 0 ( 0 ) TotalLabels = 5 ( 5 ) NameLabels = 5 ( 5 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
|
Loading…
x
Reference in New Issue
Block a user