mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029435: Data Exchange - Exporting wires consisting of more than one edge results in loss of color data in IGES
Colors wasn't read correctly because of incorrect curve transfers in IGESToBRep_TopoCurve.cxx I added new calls to SetShapeResult() at the necessary places. Also in the IGESCAFControl_Writer.cxx I added new condition because of the possible NULL exception.
This commit is contained in:
parent
1caf5fd317
commit
179fb34661
@ -102,7 +102,7 @@ namespace
|
||||
}
|
||||
}
|
||||
|
||||
if (!hasReferredShape && !hasComponents)
|
||||
if (!hasReferredShape && !hasComponents && !thePrevName.IsNull())
|
||||
{
|
||||
TopoDS_Shape aShape;
|
||||
if (!XCAFDoc_ShapeTool::GetShape (theLabel, aShape)) return;
|
||||
|
@ -391,7 +391,7 @@ TopoDS_Shape IGESToBRep_TopoCurve::Transfer2dCompositeCurve
|
||||
// SendWarning(start,Msg1036);
|
||||
// AddWarning(start, "The Trsf cannot be applied to the entity.");
|
||||
//}
|
||||
return res;
|
||||
return res;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -704,7 +704,7 @@ TopoDS_Shape IGESToBRep_TopoCurve::TransferOffsetCurve
|
||||
}
|
||||
//AddWarning(start, "Transformation skipped (not a similarity)");
|
||||
}
|
||||
|
||||
SetShapeResult(start, res);
|
||||
return res;
|
||||
}
|
||||
|
||||
@ -798,6 +798,7 @@ TopoDS_Shape IGESToBRep_TopoCurve::Transfer2dOffsetCurve
|
||||
res = sfw->Wire();
|
||||
}
|
||||
}
|
||||
SetShapeResult(start, res);
|
||||
return res;
|
||||
}
|
||||
|
||||
@ -1041,7 +1042,7 @@ TopoDS_Shape IGESToBRep_TopoCurve::TransferTopoBasicCurve
|
||||
if (start->IsKind(STANDARD_TYPE(IGESGeom_CircularArc)) &&
|
||||
Handle(IGESGeom_CircularArc)::DownCast (start)->IsClosed())
|
||||
TheBadCase = Standard_True;
|
||||
|
||||
SetShapeResult(start, myshape);
|
||||
return myedge;
|
||||
}
|
||||
|
||||
@ -1214,7 +1215,6 @@ TopoDS_Shape IGESToBRep_TopoCurve::Transfer2dTopoBasicCurve
|
||||
if (start->IsKind(STANDARD_TYPE(IGESGeom_CircularArc)) &&
|
||||
Handle(IGESGeom_CircularArc)::DownCast (start)->IsClosed())
|
||||
TheBadCase = Standard_True;
|
||||
|
||||
return myedge;
|
||||
}
|
||||
|
||||
|
@ -87,6 +87,6 @@ if { "$aColorOrig" == "$aColorNew" } {
|
||||
set xst [ XStat D_Copy 1]
|
||||
regexp {Number +of +labels +with +color +link += +([-0-9.+eE]+)} $xst full nbshcolor_Copy
|
||||
|
||||
if {$nbshcolor_Copy != 31} {
|
||||
if {$nbshcolor_Copy != 33} {
|
||||
puts "Error: incorrect count of color links to shapes"
|
||||
}
|
||||
|
34
tests/bugs/iges/bug29435
Normal file
34
tests/bugs/iges/bug29435
Normal file
@ -0,0 +1,34 @@
|
||||
puts "============"
|
||||
puts "0029435: Data Exchange, Exporting wires consisting of more than one edge results in loss of color data in IGES"
|
||||
puts "============"
|
||||
|
||||
pload XDE
|
||||
catch { Close D }
|
||||
catch { Close D1 }
|
||||
|
||||
vertex v1 -25 0 0
|
||||
vertex v2 -25 -7.5 0
|
||||
edge e1 v1 v2
|
||||
|
||||
point p2 -25 -7.5 0
|
||||
point p3 0 -15 0
|
||||
point p4 25 -7.5 0
|
||||
catch {gcarc arc cir p2 p3 p4}
|
||||
mkedge e2 arc
|
||||
|
||||
wire w1 e1 e2
|
||||
|
||||
XNewDoc D
|
||||
XAddShape D w1 1
|
||||
XSetColor D 0:1:1:1 128 128 0
|
||||
|
||||
WriteIges D $imagedir/${casename}.igs
|
||||
ReadIges D1 $imagedir/${casename}.igs
|
||||
|
||||
set color_orig [XGetAllColors D]
|
||||
set color_comp [XGetAllColors D1]
|
||||
|
||||
if { $color_orig != $color_comp } {
|
||||
puts "Error: incorrect color transfer"
|
||||
}
|
||||
file delete $imagedir/${casename}.igs
|
36
tests/bugs/iges/bug29435_1
Normal file
36
tests/bugs/iges/bug29435_1
Normal file
@ -0,0 +1,36 @@
|
||||
puts "============"
|
||||
puts "0029435: Data Exchange, Exporting wires consisting of more than one edge results in loss of color data in IGES"
|
||||
puts "============"
|
||||
|
||||
pload XDE MODELING VISUALIZATION
|
||||
catch { Close D }
|
||||
catch { Close D1 }
|
||||
|
||||
vertex v1 -25 0 0
|
||||
vertex v2 -25 -7.5 0
|
||||
edge e1 v1 v2
|
||||
|
||||
point p2 -25 -7.5 0
|
||||
point p3 0 -15 0
|
||||
point p4 25 -7.5 0
|
||||
catch {gcarc arc cir p2 p3 p4}
|
||||
mkedge e2 arc
|
||||
|
||||
wire w1 e1 e2
|
||||
|
||||
XNewDoc D
|
||||
XAddShape D w1 1
|
||||
XExpand D 0 0:1:1:1
|
||||
XSetColor D 0:1:1:2 0 128 0
|
||||
XSetColor D 0:1:1:3 128 0 0
|
||||
|
||||
WriteIges D $imagedir/${casename}.igs
|
||||
ReadIges D1 $imagedir/${casename}.igs
|
||||
|
||||
set color_orig [XGetAllColors D]
|
||||
set color_comp [XGetAllColors D1]
|
||||
|
||||
if { $color_orig != $color_comp } {
|
||||
puts "Error: incorrect color transfer"
|
||||
}
|
||||
file delete $imagedir/${casename}.igs
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 352 ( 9135 ) Summary = 352 ( 9
|
||||
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 673 ( 673 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 673 ( 673 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.1926431182 ( 0.1926431182 ) AvgTol = 0.0001428985226 ( 0.0001426024625 )
|
||||
TOLERANCE : MaxTol = 0.1926431182 ( 0.1926431182 ) AvgTol = 0.0001428004407 ( 0.0001426024625 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -1,7 +1,7 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
set filename buc40130.igs
|
||||
|
||||
# set min as local length unit
|
||||
# set min as local lenght unit
|
||||
set lengthunit_start "min"
|
||||
|
||||
set ref_data {
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 28 ) Summary = 1 ( 28 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1416 ( 1416 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1416 ( 1416 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9671829226 ( 0.9671829226 ) AvgTol = 0.01310885057 ( 0.01311108309 )
|
||||
TOLERANCE : MaxTol = 0.9671829226 ( 0.9671829226 ) AvgTol = 0.01310885056 ( 0.01311108309 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 26 ) Summary = 0 ( 26 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 455 ( 455 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 455 ( 455 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.007446262663 ( 0.007330725585 ) AvgTol = 1.640369768e-005 ( 1.01902787e-005 )
|
||||
TOLERANCE : MaxTol = 0.007446262663 ( 0.007330725585 ) AvgTol = 1.640370482e-05 ( 1.01902787e-05 )
|
||||
LABELS : N0Labels = 455 ( 455 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 455 ( 455 ) NameLabels = 455 ( 455 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 10 ) Summary = 0 ( 10 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 954 ( 954 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 954 ( 954 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9723189972 ( 0.9723189972 ) AvgTol = 0.007899106621 ( 0.007903239656 )
|
||||
TOLERANCE : MaxTol = 0.9723189972 ( 0.9723189972 ) AvgTol = 0.007899106609 ( 0.007903239656 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 4 ) Summary = 0 ( 4 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1137 ( 1137 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1137 ( 1137 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9916912901 ( 0.9916912901 ) AvgTol = 0.04552760559 ( 0.04552924379 )
|
||||
TOLERANCE : MaxTol = 0.9916912901 ( 0.9916912901 ) AvgTol = 0.0455276023 ( 0.04552924379 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 7 ( 7 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 7 ( 7 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 7 ( 7 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 7 ( 7 ) NameLabels = 7 ( 7 ) ColorLabels = 7 ( 7 ) LayerLabels = 7 ( 7 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 2 ) Warnings = 49 ( 109 ) Summary = 49 ( 111
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 102 ( 102 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 102 ( 102 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9428103106 ( 0.9428103191 ) AvgTol = 0.0470388193 ( 0.04704464574 )
|
||||
TOLERANCE : MaxTol = 0.9428103106 ( 0.9428103191 ) AvgTol = 0.04703871978 ( 0.04704464574 )
|
||||
LABELS : N0Labels = 102 ( 102 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 102 ( 102 ) NameLabels = 102 ( 102 ) ColorLabels = 0 ( 0 ) LayerLabels = 102 ( 102 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -1,7 +1,10 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
|
||||
|
||||
set filename t500core.igs
|
||||
|
||||
# set min as local length unit
|
||||
# set min as local lenght unit
|
||||
set lengthunit_start "min"
|
||||
|
||||
set ref_data {
|
||||
@ -11,7 +14,7 @@ CHECKSHAPE : Wires = 5 ( 5 ) Faces = 5 ( 5 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 674 ( 674 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 674 ( 674 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9933031338 ( 0.9932065271 ) AvgTol = 0.0725721901 ( 0.07359500431 )
|
||||
LABELS : N0Labels = 702 ( 702 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 702 ( 702 ) NameLabels = 702 ( 702 ) ColorLabels = 16 ( 16 ) LayerLabels = 702 ( 702 )
|
||||
LABELS : N0Labels = 702 ( 702 ) N1Labels = 0 ( 1977 ) N2Labels = 0 ( 0 ) TotalLabels = 702 ( 2679 ) NameLabels = 702 ( 702 ) ColorLabels = 16 ( 1993 ) LayerLabels = 702 ( 2679 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 266 ( 266 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 266 ( 266 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9647320607 ( 0.9647320724 ) AvgTol = 0.09372541107 ( 0.09372566113 )
|
||||
TOLERANCE : MaxTol = 0.9647320607 ( 0.9647320724 ) AvgTol = 0.09372539022 ( 0.09372566113 )
|
||||
LABELS : N0Labels = 266 ( 266 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 266 ( 266 ) NameLabels = 266 ( 266 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 10 ) Warnings = 308 ( 102 ) Summary = 308 ( 1
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 2 ) Solids = 0 ( 2 )
|
||||
NBSHAPES : Solid = 0 ( 30 ) Shell = 0 ( 30 ) Face = 390 ( 390 )
|
||||
STATSHAPE : Solid = 0 ( 30 ) Shell = 0 ( 30 ) Face = 390 ( 390 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.03576190045 ( 0.03576190009 ) AvgTol = 8.622709676e-005 ( 0.0003710475458 )
|
||||
TOLERANCE : MaxTol = 0.03576190045 ( 0.03576190009 ) AvgTol = 8.622070887e-005 ( 0.0003710475458 )
|
||||
LABELS : N0Labels = 108 ( 108 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 108 ( 108 ) NameLabels = 108 ( 108 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 5 ) Summary = 2 ( 5 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 277 ( 277 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 277 ( 277 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 5.931727679e-005 ( 5.926478162e-005 ) AvgTol = 2.259319372e-006 ( 9.456854522e-006 )
|
||||
TOLERANCE : MaxTol = 5.931727677e-05 ( 5.926478166e-05 ) AvgTol = 2.259319204e-06 ( 9.456854522e-06 )
|
||||
LABELS : N0Labels = 277 ( 277 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 277 ( 277 ) NameLabels = 277 ( 277 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 136 ( 143 ) Summary = 136 ( 14
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1071 ( 1071 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1071 ( 1071 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9959055336 ( 0.995905536 ) AvgTol = 0.05477449409 ( 0.05477464144 )
|
||||
TOLERANCE : MaxTol = 0.9959055336 ( 0.995905536 ) AvgTol = 0.05477449407 ( 0.05477464144 )
|
||||
LABELS : N0Labels = 1071 ( 1071 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1071 ( 1071 ) NameLabels = 1071 ( 1071 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 2 ) Warnings = 33 ( 18 ) Summary = 33 ( 20 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2430 ( 2430 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2430 ( 2430 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9991343001 ( 0.9991342868 ) AvgTol = 0.02628258114 ( 0.02628281314 )
|
||||
TOLERANCE : MaxTol = 0.9991343001 ( 0.9991342868 ) AvgTol = 0.02628258144 ( 0.02628281314 )
|
||||
LABELS : N0Labels = 2430 ( 2430 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2430 ( 2430 ) NameLabels = 2430 ( 2430 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 6 ) Summary = 0 ( 6 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 34 ( 34 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 34 ( 34 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9671317357 ( 0.9671317236 ) AvgTol = 0.04927116121 ( 0.04927208372 )
|
||||
TOLERANCE : MaxTol = 0.9671317357 ( 0.9671317236 ) AvgTol = 0.04927126943 ( 0.04927208372 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2 ( 2 ) NameLabels = 2 ( 2 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 6 ( 24 ) Summary = 6 ( 24 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 48 ( 48 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 48 ( 48 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9965425609 ( 0.9965425534 ) AvgTol = 0.01070529537 ( 0.01071062866 )
|
||||
TOLERANCE : MaxTol = 0.9965425609 ( 0.9965425534 ) AvgTol = 0.0107051528 ( 0.01071062866 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 14 ( 14 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 14 ( 14 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 4.00004e-005 ( 4.00004e-005 ) AvgTol = 3.127856609e-006 ( 3.127856609e-006 )
|
||||
TOLERANCE : MaxTol = 4.00004e-05 ( 4.00004e-05 ) AvgTol = 3.127856609e-06 ( 3.127856609e-06 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -1,4 +1,7 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
|
||||
|
||||
set filename CTS21136.igs
|
||||
|
||||
set ref_data {
|
||||
@ -7,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 106 ( 536 ) Summary = 106 ( 53
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 206 ( 206 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 206 ( 206 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.2688118771 ( 0.2688118774 ) AvgTol = 0.0006731605747 ( 0.0006730231846 )
|
||||
LABELS : N0Labels = 210 ( 210 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 210 ( 210 ) NameLabels = 210 ( 210 ) ColorLabels = 210 ( 210 ) LayerLabels = 210 ( 210 )
|
||||
TOLERANCE : MaxTol = 0.2688118771 ( 0.2688118774 ) AvgTol = 0.0006737414948 ( 0.0006736040557 )
|
||||
LABELS : N0Labels = 210 ( 210 ) N1Labels = 0 ( 722 ) N2Labels = 0 ( 0 ) TotalLabels = 210 ( 932 ) NameLabels = 210 ( 210 ) ColorLabels = 210 ( 932 ) LayerLabels = 210 ( 932 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 7 ( 7 )
|
||||
COLORS : Colors = BURLYWOOD1 DARKORANGE DEEPSKYBLUE1 GRAY79 MAGENTA MEDIUMSPRINGGREEN WHITE ( BURLYWOOD1 DARKORANGE DEEPSKYBLUE1 GRAY79 MAGENTA MEDIUMSPRINGGREEN WHITE )
|
||||
|
@ -1,5 +1,6 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR30889 ALL: TPSTAT : Faulty"
|
||||
puts "TODO CR23096 ALL: TPSTAT : Faulty"
|
||||
|
||||
|
||||
set filename CTS21866.igs
|
||||
|
||||
@ -9,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 92 ( 91 ) Summary = 92 ( 91 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1459 ( 1459 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1459 ( 1459 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9346509485 ( 0.9346509437 ) AvgTol = 0.02356720346 ( 0.02356775059 )
|
||||
TOLERANCE : MaxTol = 0.9346509485 ( 0.9346509437 ) AvgTol = 0.0235672036 ( 0.02356775059 )
|
||||
LABELS : N0Labels = 1459 ( 1459 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1459 ( 1459 ) NameLabels = 1459 ( 1459 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 5 ( 4 ) Summary = 5 ( 4 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1029 ( 1029 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1029 ( 1029 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9998969699 ( 0.9998969699 ) AvgTol = 0.03184824261 ( 0.0318753182 )
|
||||
TOLERANCE : MaxTol = 0.9998969699 ( 0.9998969699 ) AvgTol = 0.03184823131 ( 0.0318752683 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 2 ) Summary = 0 ( 2 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 537 ( 537 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 537 ( 537 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.915878389 ( 0.9159699741 ) AvgTol = 0.08054961053 ( 0.08054975206 )
|
||||
TOLERANCE : MaxTol = 0.915878389 ( 0.9159699741 ) AvgTol = 0.08054960721 ( 0.08054975206 )
|
||||
LABELS : N0Labels = 537 ( 537 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 537 ( 537 ) NameLabels = 537 ( 537 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 ) FreeWire = 1 ( 1 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 2.287521125e-007 ( 2.287522163e-007 ) AvgTol = 1.556878583e-007 ( 1.550159842e-007 )
|
||||
TOLERANCE : MaxTol = 2.287521125e-07 ( 2.287522163e-07 ) AvgTol = 1.556878583e-07 ( 1.550159842e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 321 ) Summary = 0 ( 321 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 192 ( 192 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 192 ( 192 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1.001437005e-005 ( 1e-005 ) AvgTol = 1.823424033e-006 ( 9.520967742e-006 )
|
||||
TOLERANCE : MaxTol = 1.001437005e-05 ( 1e-05 ) AvgTol = 1.763057704e-06 ( 9.520967742e-06 )
|
||||
LABELS : N0Labels = 198 ( 198 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 198 ( 198 ) NameLabels = 198 ( 198 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -1,5 +1,6 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: TPSTAT : Faulty"
|
||||
puts "TODO CR23096 ALL: COLORS : Faulty"
|
||||
|
||||
|
||||
set filename CTS21884.igs
|
||||
@ -13,8 +14,8 @@ STATSHAPE : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 180 ( 180 )
|
||||
TOLERANCE : MaxTol = 0.04953179108 ( 0.04952683977 ) AvgTol = 0.005022179244 ( 0.01224474253 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 180 ( 180 ) N2Labels = 0 ( 0 ) TotalLabels = 181 ( 181 ) NameLabels = 181 ( 181 ) ColorLabels = 180 ( 180 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = WHITE ( CYAN WHITE )
|
||||
NLAYERS : NLayers = 0 ( 0 )
|
||||
LAYERS : Layers = ( )
|
||||
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 189 ( 189 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 189 ( 189 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9674930965 ( 0.9674931058 ) AvgTol = 0.07394156078 ( 0.07394139392 )
|
||||
TOLERANCE : MaxTol = 0.9674930965 ( 0.9674931058 ) AvgTol = 0.07394152732 ( 0.07394137168 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 8 ( 205 ) Summary = 8 ( 205 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 309 ( 309 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 309 ( 309 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9528326294 ( 0.952832627 ) AvgTol = 0.02908510937 ( 0.02909176809 )
|
||||
TOLERANCE : MaxTol = 0.9528326294 ( 0.952832627 ) AvgTol = 0.02908508281 ( 0.02909145501 )
|
||||
LABELS : N0Labels = 309 ( 309 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 309 ( 309 ) NameLabels = 309 ( 309 ) ColorLabels = 309 ( 309 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.015577035 ( 0.015577035 ) AvgTol = 0.00522937151 ( 0.00522974902 )
|
||||
TOLERANCE : MaxTol = 0.015577035 ( 0.015577035 ) AvgTol = 0.005229227375 ( 0.00522974902 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 12 ( 12 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 12 ( 12 ) NameLabels = 12 ( 12 ) ColorLabels = 12 ( 12 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2 ( 2 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2 ( 2 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2 ( 2 ) NameLabels = 2 ( 2 ) ColorLabels = 2 ( 2 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 13 ( 13 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 13 ( 13 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 130 ( 130 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 130 ( 130 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6 ( 6 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6 ( 6 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 68 ( 68 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 68 ( 68 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 26 ) Summary = 0 ( 26 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 23 ( 23 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 23 ( 23 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.7088972898 ( 0.7088972898 ) AvgTol = 0.007706834255 ( 0.007716106329 )
|
||||
TOLERANCE : MaxTol = 0.7088972898 ( 0.7088972898 ) AvgTol = 0.007706834255 ( 0.007714069568 )
|
||||
LABELS : N0Labels = 23 ( 23 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 23 ( 23 ) NameLabels = 23 ( 23 ) ColorLabels = 23 ( 23 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -3,11 +3,11 @@ set filename upm_italie.igs
|
||||
|
||||
set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 34 ( 35 ) Summary = 34 ( 35 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 35 ( 35 ) Summary = 35 ( 35 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 530 ( 530 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 530 ( 530 ) FreeWire = 2 ( 2 )
|
||||
TOLERANCE : MaxTol = 0.0469660729 ( 0.0469660729 ) AvgTol = 0.0008698532271 ( 0.0008698588026 )
|
||||
TOLERANCE : MaxTol = 0.0469660729 ( 0.0469660729 ) AvgTol = 0.0008698587781 ( 0.0008698588026 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 5 ( 0 ) Summary = 5 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 ) FreeWire = 2 ( 2 )
|
||||
TOLERANCE : MaxTol = 1.946144384e-005 ( 1.946144167e-005 ) AvgTol = 3.118935701e-006 ( 3.98657152e-006 )
|
||||
TOLERANCE : MaxTol = 1.946144384e-05 ( 1.946144167e-05 ) AvgTol = 3.118935701e-06 ( 3.98657152e-06 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 87 ) Summary = 0 ( 87 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 65 ( 65 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 65 ( 65 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 4.714980615e-005 ( 4.713077152e-005 ) AvgTol = 4.184005069e-006 ( 4.220814103e-006 )
|
||||
TOLERANCE : MaxTol = 4.714980615e-05 ( 4.713077152e-05 ) AvgTol = 4.184005069e-06 ( 4.220814103e-06 )
|
||||
LABELS : N0Labels = 65 ( 65 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 65 ( 65 ) NameLabels = 65 ( 65 ) ColorLabels = 0 ( 0 ) LayerLabels = 65 ( 65 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 7 ( 10 ) Summary = 7 ( 10 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 622 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 622 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9474413117 ( 0.9474413171 ) AvgTol = 0.04457091758 ( 0.04457487011 )
|
||||
TOLERANCE : MaxTol = 0.9474413117 ( 0.9474413171 ) AvgTol = 0.04457091645 ( 0.04457487011 )
|
||||
LABELS : N0Labels = 622 ( 622 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 622 ( 622 ) NameLabels = 622 ( 622 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 2 ) Summary = 2 ( 2 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 228 ( 228 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 228 ( 228 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9908409583 ( 0.9908409583 ) AvgTol = 0.05061444142 ( 0.05061547001 )
|
||||
TOLERANCE : MaxTol = 0.9908409583 ( 0.9908409583 ) AvgTol = 0.05061440182 ( 0.05061547001 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -11,8 +11,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 6 ( 0 ) Summary = 6 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 410 ( 410 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 410 ( 410 ) FreeWire = 410 ( 410 )
|
||||
TOLERANCE : MaxTol = 0.6309534605 ( 0.6309534603 ) AvgTol = 0.01007170672 ( 0.0100718085 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1651 ( 2079 ) N2Labels = 0 ( 0 ) TotalLabels = 1652 ( 2080 ) NameLabels = 1652 ( 2053 ) ColorLabels = 1651 ( 2079 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.6309534605 ( 0.6309534603 ) AvgTol = 0.01007170646 ( 0.0100718085 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1026 ( 2194 ) N2Labels = 0 ( 0 ) TotalLabels = 1027 ( 2195 ) NameLabels = 1027 ( 1428 ) ColorLabels = 1026 ( 2194 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 76 ) Summary = 0 ( 76 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 79 ( 79 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 79 ( 79 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 6.019859301e-006 ( 1e-005 ) AvgTol = 2.732867219e-007 ( 7.554593913e-006 )
|
||||
TOLERANCE : MaxTol = 6.019859301e-06 ( 1e-05 ) AvgTol = 2.732866732e-07 ( 7.554593913e-06 )
|
||||
LABELS : N0Labels = 79 ( 79 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 79 ( 79 ) NameLabels = 79 ( 79 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 165 ( 4158 ) Summary = 165 ( 4
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 448 ( 448 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 448 ( 448 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.08683083502 ( 0.04341528762 ) AvgTol = 0.0008699009572 ( 0.000787655961 )
|
||||
TOLERANCE : MaxTol = 0.08683083502 ( 0.04341528762 ) AvgTol = 0.0008696507533 ( 0.000787655961 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 119 ) Summary = 2 ( 119 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 48 ( 48 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 48 ( 48 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.4654616407 ( 0.4654616407 ) AvgTol = 0.01534289116 ( 0.01534994104 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 48 ( 304 ) N2Labels = 0 ( 0 ) TotalLabels = 49 ( 305 ) NameLabels = 49 ( 72 ) ColorLabels = 48 ( 304 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.4654616407 ( 0.4654616407 ) AvgTol = 0.01534276289 ( 0.01534994104 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 48 ( 391 ) N2Labels = 0 ( 0 ) TotalLabels = 49 ( 392 ) NameLabels = 49 ( 72 ) ColorLabels = 48 ( 391 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLUE DARKGREEN WHITE YELLOW ( BLUE DARKGREEN 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 = 98 ( 98 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 98 ( 98 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.03645053132 ( 0.03645054227 ) AvgTol = 0.0005450433774 ( 0.0005479624657 )
|
||||
LABELS : N0Labels = 124 ( 124 ) N1Labels = 0 ( 87 ) N2Labels = 0 ( 0 ) TotalLabels = 124 ( 211 ) NameLabels = 124 ( 124 ) ColorLabels = 124 ( 211 ) LayerLabels = 124 ( 211 )
|
||||
LABELS : N0Labels = 124 ( 124 ) N1Labels = 66 ( 181 ) N2Labels = 0 ( 0 ) TotalLabels = 190 ( 305 ) NameLabels = 124 ( 124 ) ColorLabels = 190 ( 305 ) LayerLabels = 190 ( 305 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = GREEN ( GREEN )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 13 ) Summary = 2 ( 13 )
|
||||
CHECKSHAPE : Wires = 2 ( 1 ) Faces = 2 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1477 ( 1477 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1477 ( 1477 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9794963919 ( 0.9794963919 ) AvgTol = 0.03860116877 ( 0.03861778166 )
|
||||
TOLERANCE : MaxTol = 0.9794963919 ( 0.9794963919 ) AvgTol = 0.03860116691 ( 0.03861778166 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 53 ) Warnings = 72 ( 167 ) Summary = 72 ( 220
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 42 ( 42 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 42 ( 42 ) FreeWire = 8 ( 58 )
|
||||
TOLERANCE : MaxTol = 0.01444583491 ( 0.01444583491 ) AvgTol = 0.0002992099519 ( 0.0003004298617 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 193 ( 264 ) N2Labels = 0 ( 0 ) TotalLabels = 196 ( 270 ) NameLabels = 144 ( 230 ) ColorLabels = 193 ( 261 ) LayerLabels = 192 ( 209 )
|
||||
TOLERANCE : MaxTol = 0.01444583491 ( 0.01444583491 ) AvgTol = 0.0002992098795 ( 0.0003004298617 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 197 ( 306 ) N2Labels = 0 ( 0 ) TotalLabels = 200 ( 312 ) NameLabels = 94 ( 180 ) ColorLabels = 197 ( 303 ) LayerLabels = 192 ( 251 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
COLORS : Colors = BLUE CYAN MAGENTA2 RED TURQUOISE3 WHITE ( BLUE CYAN MAGENTA2 RED TURQUOISE3 WHITE )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 5 ) Warnings = 106 ( 832 ) Summary = 106 ( 83
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) FreeWire = 0 ( 32 )
|
||||
TOLERANCE : MaxTol = 0.9049033554 ( 0.9049033554 ) AvgTol = 0.01221723065 ( 0.01221855818 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 246 ( 2191 ) N2Labels = 0 ( 0 ) TotalLabels = 247 ( 2192 ) NameLabels = 247 ( 374 ) ColorLabels = 246 ( 2191 ) LayerLabels = 241 ( 2186 )
|
||||
TOLERANCE : MaxTol = 0.9049033554 ( 0.9049033554 ) AvgTol = 0.01221722752 ( 0.01221855818 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 246 ( 2694 ) N2Labels = 0 ( 0 ) TotalLabels = 247 ( 2695 ) NameLabels = 215 ( 342 ) ColorLabels = 246 ( 2694 ) LayerLabels = 241 ( 2689 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = CYAN GREEN RED WHITE YELLOW ( CYAN GREEN RED WHITE YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 53 ) Warnings = 3 ( 637 ) Summary = 3 ( 690 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1766 ( 1766 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1766 ( 1766 ) FreeWire = 0 ( 2 )
|
||||
TOLERANCE : MaxTol = 0.1881003203 ( 0.1881003203 ) AvgTol = 0.000455843831 ( 0.0004561112402 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 1868 ( 3154 ) N2Labels = 0 ( 0 ) TotalLabels = 1871 ( 3160 ) NameLabels = 1819 ( 2019 ) ColorLabels = 1868 ( 3151 ) LayerLabels = 1868 ( 3100 )
|
||||
TOLERANCE : MaxTol = 0.1881003203 ( 0.1881003203 ) AvgTol = 0.0004558431471 ( 0.0004561112402 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 1868 ( 3534 ) N2Labels = 0 ( 0 ) TotalLabels = 1871 ( 3540 ) NameLabels = 1817 ( 2017 ) ColorLabels = 1868 ( 3531 ) LayerLabels = 1868 ( 3480 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = BLUE MAGENTA2 ORANGE RED WHITE ( BLUE MAGENTA2 ORANGE RED WHITE )
|
||||
|
@ -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 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 208 ( 208 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.1393674657 ( 0.1393674657 ) AvgTol = 0.003094503419 ( 0.003090745184 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 3725 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 3726 ) NameLabels = 215 ( 330 ) ColorLabels = 214 ( 3725 ) LayerLabels = 209 ( 3720 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 214 ( 3801 ) N2Labels = 0 ( 0 ) TotalLabels = 215 ( 3802 ) NameLabels = 215 ( 330 ) ColorLabels = 214 ( 3801 ) LayerLabels = 209 ( 3796 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = CYAN GREEN RED WHITE YELLOW ( CYAN 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 = 22 ( 22 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 22 ( 22 ) FreeWire = 6 ( 6 )
|
||||
TOLERANCE : MaxTol = 0.9257818164 ( 0.9257819919 ) AvgTol = 0.02303074348 ( 0.02303069465 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 131 ( 244 ) N2Labels = 0 ( 0 ) TotalLabels = 132 ( 245 ) NameLabels = 132 ( 149 ) ColorLabels = 131 ( 244 ) LayerLabels = 131 ( 244 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 136 ( 311 ) N2Labels = 0 ( 0 ) TotalLabels = 137 ( 312 ) NameLabels = 132 ( 149 ) ColorLabels = 136 ( 311 ) LayerLabels = 131 ( 311 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLUE GREEN STEELBLUE2 VIOLETRED2 ( BLUE GREEN STEELBLUE2 VIOLETRED2 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 57 ( 658 ) Summary = 57 ( 658
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 218 ( 218 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 218 ( 218 ) FreeWire = 77 ( 108 )
|
||||
TOLERANCE : MaxTol = 0.1504135906 ( 0.1504135906 ) AvgTol = 0.0004235230718 ( 0.0004485369972 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1279 ( 3474 ) N2Labels = 0 ( 0 ) TotalLabels = 1281 ( 3476 ) NameLabels = 1281 ( 1491 ) ColorLabels = 1280 ( 3475 ) LayerLabels = 284 ( 2422 )
|
||||
TOLERANCE : MaxTol = 0.1504135906 ( 0.1504135906 ) AvgTol = 0.0004235229655 ( 0.0004485369972 )
|
||||
LABELS : N0Labels = 2 ( 2 ) N1Labels = 1019 ( 3449 ) N2Labels = 0 ( 0 ) TotalLabels = 1021 ( 3451 ) NameLabels = 945 ( 1155 ) ColorLabels = 1020 ( 3450 ) LayerLabels = 237 ( 2579 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = GREEN MAGENTA WHITE YELLOW ( GREEN MAGENTA 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 = 120 ( 120 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 120 ( 120 ) FreeWire = 31 ( 31 )
|
||||
TOLERANCE : MaxTol = 0.763617442 ( 0.7636174422 ) AvgTol = 0.001290751445 ( 0.001290629985 )
|
||||
LABELS : N0Labels = 1051 ( 1051 ) N1Labels = 0 ( 13 ) N2Labels = 0 ( 0 ) TotalLabels = 1051 ( 1064 ) NameLabels = 1051 ( 1051 ) ColorLabels = 971 ( 1064 ) LayerLabels = 971 ( 1051 )
|
||||
LABELS : N0Labels = 1051 ( 1051 ) N1Labels = 5 ( 15 ) N2Labels = 0 ( 0 ) TotalLabels = 1056 ( 1066 ) NameLabels = 1051 ( 1051 ) ColorLabels = 976 ( 1066 ) LayerLabels = 971 ( 1053 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 8 )
|
||||
COLORS : Colors = BLACK BLUE CYAN GREEN MAGENTA RED WHITE YELLOW ( BLACK BLUE CYAN GREEN MAGENTA RED WHITE YELLOW )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 8 ) Summary = 0 ( 8 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1.000369935e-007 ) AvgTol = 1e-007 ( 1.000003506e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1.000369935e-07 ) AvgTol = 1e-07 ( 1.000003506e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 121 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 122 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 122 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 232 ( 515 ) Summary = 232 ( 51
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 146 ( 146 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 146 ( 146 ) FreeWire = 5 ( 5 )
|
||||
TOLERANCE : MaxTol = 0.02364292093 ( 0.0236405571 ) AvgTol = 9.639867981e-005 ( 9.641748471e-005 )
|
||||
LABELS : N0Labels = 285 ( 287 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 285 ( 287 ) NameLabels = 285 ( 287 ) ColorLabels = 279 ( 285 ) LayerLabels = 279 ( 285 )
|
||||
TOLERANCE : MaxTol = 0.02364292093 ( 0.0236405571 ) AvgTol = 9.639867981e-05 ( 9.641748471e-05 )
|
||||
LABELS : N0Labels = 285 ( 287 ) N1Labels = 1 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 286 ( 287 ) NameLabels = 285 ( 287 ) ColorLabels = 280 ( 285 ) LayerLabels = 279 ( 285 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = MAGENTA WHITE ( MAGENTA WHITE )
|
||||
|
@ -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 BUC61004-1.igs
|
||||
@ -10,12 +11,12 @@ TPSTAT : Faulties = 0 ( 4 ) Warnings = 0 ( 312 ) Summary = 0 ( 316 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 241 ( 241 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 241 ( 241 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 9.452110698e-006 ( 1e-005 ) AvgTol = 1.74434884e-007 ( 8.133454698e-006 )
|
||||
LABELS : N0Labels = 241 ( 241 ) N1Labels = 0 ( 83 ) N2Labels = 0 ( 0 ) TotalLabels = 241 ( 324 ) NameLabels = 241 ( 241 ) ColorLabels = 241 ( 324 ) LayerLabels = 241 ( 324 )
|
||||
TOLERANCE : MaxTol = 8.265823485e-06 ( 1e-05 ) AvgTol = 1.446359158e-07 ( 8.133454698e-06 )
|
||||
LABELS : N0Labels = 241 ( 241 ) N1Labels = 0 ( 101 ) N2Labels = 0 ( 0 ) TotalLabels = 241 ( 342 ) NameLabels = 241 ( 241 ) ColorLabels = 241 ( 342 ) LayerLabels = 241 ( 342 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = WHITE YELLOW ( WHITE YELLOW )
|
||||
NLAYERS : NLayers = 1 ( 1 )
|
||||
LAYERS : Layers = 10 ( 10 )
|
||||
NLAYERS : NLayers = 1 ( 2 )
|
||||
LAYERS : Layers = 10 ( 10 40 )
|
||||
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 180 ( 180 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 180 ( 180 ) FreeWire = 1 ( 1 )
|
||||
TOLERANCE : MaxTol = 0.0305692698 ( 0.03056926518 ) AvgTol = 0.00147298413 ( 0.001472983156 )
|
||||
LABELS : N0Labels = 296 ( 296 ) N1Labels = 0 ( 1 ) N2Labels = 0 ( 0 ) TotalLabels = 296 ( 297 ) NameLabels = 296 ( 297 ) ColorLabels = 293 ( 294 ) LayerLabels = 31 ( 31 )
|
||||
LABELS : N0Labels = 296 ( 296 ) N1Labels = 1 ( 1 ) N2Labels = 0 ( 0 ) TotalLabels = 297 ( 297 ) NameLabels = 296 ( 297 ) ColorLabels = 294 ( 294 ) LayerLabels = 31 ( 31 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLUE CYAN GREEN YELLOW ( BLUE CYAN GREEN YELLOW )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 21 ) Summary = 1 ( 21 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 481 ( 6296 ) Summary = 481 ( 6
|
||||
CHECKSHAPE : Wires = 0 ( 2 ) Faces = 0 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3647 ( 3647 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3647 ( 3647 ) FreeWire = 180 ( 289 )
|
||||
TOLERANCE : MaxTol = 0.9982953477 ( 0.9982953477 ) AvgTol = 0.01534268303 ( 0.01547482548 )
|
||||
LABELS : N0Labels = 403 ( 403 ) N1Labels = 3841 ( 15575 ) N2Labels = 0 ( 0 ) TotalLabels = 4244 ( 15978 ) NameLabels = 4242 ( 6516 ) ColorLabels = 4090 ( 15977 ) LayerLabels = 4090 ( 15977 )
|
||||
TOLERANCE : MaxTol = 0.9982953477 ( 0.9982953477 ) AvgTol = 0.01534180332 ( 0.01547477008 )
|
||||
LABELS : N0Labels = 403 ( 403 ) N1Labels = 3828 ( 23548 ) N2Labels = 0 ( 0 ) TotalLabels = 4231 ( 23951 ) NameLabels = 4117 ( 6391 ) ColorLabels = 4077 ( 23950 ) LayerLabels = 4035 ( 23950 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 5 ( 5 )
|
||||
COLORS : Colors = BLUE CHARTREUSE CYAN DARKKHAKI LIGHTPINK1 ( BLUE CHARTREUSE CYAN DARKKHAKI LIGHTPINK1 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 39 ) Summary = 0 ( 39 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 327 ( 327 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 327 ( 327 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.000190478139 ( 9.082153585e-005 ) AvgTol = 9.791389143e-006 ( 2.775931887e-006 )
|
||||
TOLERANCE : MaxTol = 0.0001904781389 ( 9.082153585e-05 ) AvgTol = 9.79139513e-06 ( 2.775931888e-06 )
|
||||
LABELS : N0Labels = 326 ( 326 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 326 ( 326 ) NameLabels = 326 ( 326 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1.029699982e-007 ( 1e-007 ) AvgTol = 1.01142307e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1.029699982e-07 ( 1e-07 ) AvgTol = 1.01142307e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1 ( 2 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 2 ) NameLabels = 1 ( 2 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 169 ( 1113 ) Summary = 169 ( 1
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 900 ( 900 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 900 ( 900 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.004034169186 ( 0.004034577888 ) AvgTol = 7.709490681e-006 ( 1.210856965e-005 )
|
||||
LABELS : N0Labels = 900 ( 900 ) N1Labels = 0 ( 970 ) N2Labels = 0 ( 0 ) TotalLabels = 900 ( 1870 ) NameLabels = 900 ( 900 ) ColorLabels = 900 ( 1870 ) LayerLabels = 900 ( 1870 )
|
||||
TOLERANCE : MaxTol = 0.004034169186 ( 0.004034577888 ) AvgTol = 7.709490681e-06 ( 1.210856965e-05 )
|
||||
LABELS : N0Labels = 900 ( 900 ) N1Labels = 10 ( 4173 ) N2Labels = 0 ( 0 ) TotalLabels = 910 ( 5073 ) NameLabels = 900 ( 900 ) ColorLabels = 910 ( 5073 ) LayerLabels = 910 ( 5073 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = YELLOW ( YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 54 ( 1095 ) Summary = 54 ( 109
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1038 ( 1038 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1038 ( 1038 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.5433123157 ( 0.8329982221 ) AvgTol = 0.002232604726 ( 0.002439058312 )
|
||||
LABELS : N0Labels = 1038 ( 1038 ) N1Labels = 0 ( 1537 ) N2Labels = 0 ( 0 ) TotalLabels = 1038 ( 2575 ) NameLabels = 1038 ( 1038 ) ColorLabels = 1038 ( 2575 ) LayerLabels = 1038 ( 2575 )
|
||||
TOLERANCE : MaxTol = 0.5433123157 ( 0.8329982221 ) AvgTol = 0.002232604695 ( 0.002439058305 )
|
||||
LABELS : N0Labels = 1038 ( 1038 ) N1Labels = 19 ( 4816 ) N2Labels = 0 ( 0 ) TotalLabels = 1057 ( 5854 ) NameLabels = 1038 ( 1038 ) ColorLabels = 1057 ( 5854 ) LayerLabels = 1057 ( 5854 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = GREEN RED ( GREEN RED )
|
||||
|
@ -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: COLORS : Faulty"
|
||||
|
||||
|
||||
set filename CTS18847.igs
|
||||
@ -10,11 +11,11 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 63 ( 63 ) Summary = 63 ( 63 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 117 ( 117 )
|
||||
STATSHAPE : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 117 ( 117 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.1300697138 ( 0.1300697287 ) AvgTol = 0.002196731047 ( 0.00567483205 )
|
||||
TOLERANCE : MaxTol = 0.1300697138 ( 0.1300697287 ) AvgTol = 0.002196731047 ( 0.005674805066 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 117 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 118 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 117 ( 1 ) LayerLabels = 117 ( 1 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = DEEPSKYBLUE1 ( DEEPSKYBLUE1 )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = DEEPSKYBLUE1 ( DEEPSKYBLUE1 WHITE )
|
||||
NLAYERS : NLayers = 1 ( 1 )
|
||||
LAYERS : Layers = 2 ( 2 )
|
||||
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 3 ) Summary = 0 ( 3 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 396 ( 396 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 396 ( 396 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9967131592 ( 0.9967131592 ) AvgTol = 0.05132242238 ( 0.05132318968 )
|
||||
TOLERANCE : MaxTol = 0.9967131592 ( 0.9967131592 ) AvgTol = 0.05132242103 ( 0.05132318832 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 396 ( 37 ) N2Labels = 0 ( 0 ) TotalLabels = 397 ( 38 ) NameLabels = 1 ( 1 ) ColorLabels = 396 ( 38 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
|
@ -1,4 +1,5 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
puts "TODO CR23096 ALL: COLORS : Faulty"
|
||||
|
||||
|
||||
@ -10,8 +11,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 160 ( 856 ) Summary = 160 ( 85
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.820956344 ( 0.821038439 ) AvgTol = 0.008029334484 ( 0.008105972337 )
|
||||
LABELS : N0Labels = 289 ( 289 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 289 ( 289 ) NameLabels = 289 ( 289 ) ColorLabels = 101 ( 101 ) LayerLabels = 288 ( 288 )
|
||||
TOLERANCE : MaxTol = 0.820956344 ( 0.821038439 ) AvgTol = 0.008018002254 ( 0.008094646991 )
|
||||
LABELS : N0Labels = 289 ( 289 ) N1Labels = 0 ( 896 ) N2Labels = 0 ( 0 ) TotalLabels = 289 ( 1185 ) NameLabels = 289 ( 289 ) ColorLabels = 101 ( 997 ) LayerLabels = 288 ( 1184 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 8 )
|
||||
COLORS : Colors = RED WHITE ( BURLYWOOD1 DARKORANGE DEEPSKYBLUE1 LEMONCHIFFON1 MAGENTA MEDIUMSPRINGGREEN RED WHITE )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 331 ( 331 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 331 ( 331 ) FreeWire = 70 ( 116 )
|
||||
TOLERANCE : MaxTol = 0.6112323056 ( 0.6112323056 ) AvgTol = 0.0009101512481 ( 0.001289214856 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 481 ( 739 ) N2Labels = 0 ( 0 ) TotalLabels = 482 ( 740 ) NameLabels = 482 ( 559 ) ColorLabels = 481 ( 739 ) LayerLabels = 479 ( 737 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 493 ( 737 ) N2Labels = 0 ( 0 ) TotalLabels = 494 ( 738 ) NameLabels = 430 ( 507 ) ColorLabels = 493 ( 737 ) LayerLabels = 427 ( 735 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 8 )
|
||||
COLORS : Colors = BLUE CYAN DARKORANGE GOLD3 PALETURQUOISE2 RED WHITE YELLOW ( BLUE CYAN DARKORANGE GOLD3 PALETURQUOISE2 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 = 308 ( 308 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 308 ( 308 ) FreeWire = 6 ( 7 )
|
||||
TOLERANCE : MaxTol = 0.9778021574 ( 0.9778021574 ) AvgTol = 0.0358027395 ( 0.0357973111 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1089 ( 2056 ) N2Labels = 0 ( 0 ) TotalLabels = 1090 ( 2057 ) NameLabels = 1090 ( 1285 ) ColorLabels = 1089 ( 2056 ) LayerLabels = 168 ( 311 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1093 ( 2685 ) N2Labels = 0 ( 0 ) TotalLabels = 1094 ( 2686 ) NameLabels = 1087 ( 1282 ) ColorLabels = 1093 ( 2685 ) LayerLabels = 166 ( 341 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
COLORS : Colors = BLUE GREEN MAGENTA RED WHITE YELLOW ( BLUE GREEN MAGENTA RED WHITE YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 218 ) Summary = 0 ( 218 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 ) FreeWire = 218 ( 218 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
LABELS : N0Labels = 1819 ( 1819 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1819 ( 1819 ) NameLabels = 1819 ( 1819 ) ColorLabels = 1601 ( 1819 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 1819 ( 1819 ) N1Labels = 210 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2029 ( 1819 ) NameLabels = 1819 ( 1819 ) ColorLabels = 1811 ( 1819 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
COLORS : Colors = BLUE GREEN MAGENTA RED WHITE YELLOW ( BLUE GREEN MAGENTA 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 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 568 ( 568 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.4977710304 ( 0.4977710286 ) AvgTol = 0.001985043383 ( 0.001988149118 )
|
||||
LABELS : N0Labels = 568 ( 569 ) N1Labels = 0 ( 1210 ) N2Labels = 0 ( 0 ) TotalLabels = 568 ( 1779 ) NameLabels = 568 ( 569 ) ColorLabels = 568 ( 1778 ) LayerLabels = 568 ( 1778 )
|
||||
LABELS : N0Labels = 568 ( 569 ) N1Labels = 0 ( 2775 ) N2Labels = 0 ( 0 ) TotalLabels = 568 ( 3344 ) NameLabels = 568 ( 569 ) ColorLabels = 568 ( 3343 ) LayerLabels = 568 ( 3343 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = YELLOW ( YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 345 ( 5241 ) Summary = 345 ( 5
|
||||
CHECKSHAPE : Wires = 8 ( 12 ) Faces = 12 ( 12 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 5163 ( 5163 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 5163 ( 5163 ) FreeWire = 10 ( 10 )
|
||||
TOLERANCE : MaxTol = 0.9874083984 ( 0.9875071265 ) AvgTol = 0.01115260658 ( 0.01115854425 )
|
||||
LABELS : N0Labels = 5392 ( 5458 ) N1Labels = 18 ( 4541 ) N2Labels = 0 ( 0 ) TotalLabels = 5410 ( 9999 ) NameLabels = 5392 ( 5458 ) ColorLabels = 5391 ( 9933 ) LayerLabels = 5391 ( 9933 )
|
||||
TOLERANCE : MaxTol = 0.9874083984 ( 0.9875071265 ) AvgTol = 0.01115260676 ( 0.01115854425 )
|
||||
LABELS : N0Labels = 5392 ( 5458 ) N1Labels = 302 ( 18481 ) N2Labels = 0 ( 0 ) TotalLabels = 5694 ( 23939 ) NameLabels = 5392 ( 5458 ) ColorLabels = 5675 ( 23873 ) LayerLabels = 5663 ( 23873 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLACK BLUE CYAN GREEN ( BLACK BLUE CYAN GREEN )
|
||||
|
@ -6,11 +6,11 @@ set filename GER60736.igs
|
||||
|
||||
set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 550 ( 814 ) Summary = 550 ( 814 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 630 ( 814 ) Summary = 630 ( 814 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 406 ( 406 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 406 ( 406 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1.005912368e-005 ( 1.005909788e-005 ) AvgTol = 6.288457741e-007 ( 9.442593263e-006 )
|
||||
TOLERANCE : MaxTol = 1e-05 ( 1e-05 ) AvgTol = 6.331036165e-07 ( 9.442558346e-06 )
|
||||
LABELS : N0Labels = 406 ( 406 ) N1Labels = 0 ( 282 ) N2Labels = 0 ( 0 ) TotalLabels = 406 ( 688 ) NameLabels = 406 ( 406 ) ColorLabels = 406 ( 688 ) LayerLabels = 406 ( 688 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 6 ( 6 )
|
||||
|
@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 223 ( 59 ) Summary = 223 ( 59
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 258 ( 258 )
|
||||
STATSHAPE : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 258 ( 258 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.03577771363 ( 0.05584689429 ) AvgTol = 0.001023334702 ( 0.004315163006 )
|
||||
TOLERANCE : MaxTol = 0.03577771363 ( 0.05584633879 ) AvgTol = 0.001023334702 ( 0.004315134008 )
|
||||
LABELS : N0Labels = 188 ( 188 ) N1Labels = 258 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 446 ( 188 ) NameLabels = 188 ( 188 ) ColorLabels = 445 ( 188 ) LayerLabels = 445 ( 188 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 442 ( 442 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 442 ( 442 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 442 ( 442 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 442 ( 442 ) NameLabels = 442 ( 442 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 844 ( 844 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 844 ( 844 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 844 ( 844 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 844 ( 844 ) NameLabels = 844 ( 844 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -1,6 +1,7 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
puts "TODO CR23096 ALL: LABELS : Faulty"
|
||||
|
||||
|
||||
|
||||
|
||||
set LinuxFaulties {STATSHAPE}
|
||||
set filename Inner.igs
|
||||
@ -11,8 +12,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 35 ( 887 ) Summary = 35 ( 887
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 392 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 392 ) FreeWire = 97 ( 121 )
|
||||
TOLERANCE : MaxTol = 0.9393822539 ( 0.9393822539 ) AvgTol = 0.01258755368 ( 0.01256114362 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1695 ( 3509 ) N2Labels = 0 ( 0 ) TotalLabels = 1696 ( 3510 ) NameLabels = 1696 ( 1972 ) ColorLabels = 1695 ( 3509 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.9393822539 ( 0.9393822539 ) AvgTol = 0.01258754851 ( 0.01256114362 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 812 ( 3079 ) N2Labels = 0 ( 0 ) TotalLabels = 813 ( 3080 ) NameLabels = 716 ( 992 ) ColorLabels = 812 ( 3079 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BLUE GREEN WHITE YELLOW ( BLUE GREEN WHITE YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 94 ) Summary = 0 ( 94 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.0004488397396 ( 0.0004487950678 ) AvgTol = 6.030363325e-006 ( 6.029819044e-006 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 90 ( 90 ) N2Labels = 0 ( 0 ) TotalLabels = 93 ( 96 ) NameLabels = 3 ( 6 ) ColorLabels = 90 ( 90 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.0004488397396 ( 0.0004487950678 ) AvgTol = 6.030363325e-06 ( 6.029819044e-06 )
|
||||
LABELS : N0Labels = 3 ( 6 ) N1Labels = 94 ( 90 ) N2Labels = 0 ( 0 ) TotalLabels = 97 ( 96 ) NameLabels = 3 ( 6 ) ColorLabels = 94 ( 90 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = GRAY31 GRAY66 ( GRAY31 GRAY66 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 2 ) Warnings = 274 ( 1846 ) Summary = 274 ( 1
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1041 ( 1041 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1041 ( 1041 ) FreeWire = 90 ( 90 )
|
||||
TOLERANCE : MaxTol = 0.90877121 ( 0.9087712052 ) AvgTol = 0.01342759475 ( 0.01342779368 )
|
||||
LABELS : N0Labels = 1571 ( 1571 ) N1Labels = 0 ( 615 ) N2Labels = 0 ( 0 ) TotalLabels = 1571 ( 2186 ) NameLabels = 1571 ( 2173 ) ColorLabels = 1481 ( 2186 ) LayerLabels = 1481 ( 2186 )
|
||||
TOLERANCE : MaxTol = 0.90877121 ( 0.9087712052 ) AvgTol = 0.01342759474 ( 0.01342779368 )
|
||||
LABELS : N0Labels = 1571 ( 1571 ) N1Labels = 80 ( 4094 ) N2Labels = 0 ( 0 ) TotalLabels = 1651 ( 5665 ) NameLabels = 1571 ( 2173 ) ColorLabels = 1561 ( 5665 ) LayerLabels = 1525 ( 5665 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = GREEN MAGENTA RED YELLOW ( GREEN MAGENTA RED YELLOW )
|
||||
|
@ -11,7 +11,7 @@ CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 313 ( 313 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 313 ( 313 ) FreeWire = 15 ( 15 )
|
||||
TOLERANCE : MaxTol = 0.9840868681 ( 0.9840868681 ) AvgTol = 0.04921761999 ( 0.04923582333 )
|
||||
LABELS : N0Labels = 516 ( 516 ) N1Labels = 0 ( 229 ) N2Labels = 0 ( 0 ) TotalLabels = 516 ( 745 ) NameLabels = 516 ( 745 ) ColorLabels = 501 ( 745 ) LayerLabels = 501 ( 745 )
|
||||
LABELS : N0Labels = 516 ( 516 ) N1Labels = 7 ( 1332 ) N2Labels = 0 ( 0 ) TotalLabels = 523 ( 1848 ) NameLabels = 516 ( 745 ) ColorLabels = 508 ( 1848 ) LayerLabels = 501 ( 1848 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = RED YELLOW ( RED YELLOW )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 18 ( 67 ) Summary = 18 ( 67 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 230 ( 230 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 230 ( 230 ) FreeWire = 1 ( 1 )
|
||||
TOLERANCE : MaxTol = 0.06012224669 ( 0.1346852729 ) AvgTol = 0.001347526782 ( 0.001524974893 )
|
||||
LABELS : N0Labels = 292 ( 292 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 292 ( 292 ) NameLabels = 292 ( 292 ) ColorLabels = 291 ( 292 ) LayerLabels = 247 ( 248 )
|
||||
TOLERANCE : MaxTol = 0.06012224686 ( 0.1346852729 ) AvgTol = 0.001347527212 ( 0.001524974821 )
|
||||
LABELS : N0Labels = 292 ( 292 ) N1Labels = 1 ( 731 ) N2Labels = 0 ( 0 ) TotalLabels = 293 ( 1023 ) NameLabels = 292 ( 292 ) ColorLabels = 292 ( 1023 ) LayerLabels = 247 ( 979 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = BURLYWOOD1 DEEPSKYBLUE1 RED WHITE ( BURLYWOOD1 DEEPSKYBLUE1 RED WHITE )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 270 ) Summary = 0 ( 270 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 186 ( 186 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.04931043567 ( 0.04931014771 ) AvgTol = 0.0003784701943 ( 0.0003861054137 )
|
||||
LABELS : N0Labels = 186 ( 186 ) N1Labels = 0 ( 569 ) N2Labels = 0 ( 0 ) TotalLabels = 186 ( 755 ) NameLabels = 186 ( 186 ) ColorLabels = 186 ( 755 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.04931043567 ( 0.04931014771 ) AvgTol = 0.000378468014 ( 0.0003861054137 )
|
||||
LABELS : N0Labels = 186 ( 186 ) N1Labels = 0 ( 842 ) N2Labels = 0 ( 0 ) TotalLabels = 186 ( 1028 ) NameLabels = 186 ( 186 ) ColorLabels = 186 ( 1028 ) 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 = 115 ( 115 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 115 ( 115 ) FreeWire = 4 ( 4 )
|
||||
TOLERANCE : MaxTol = 0.4134968839 ( 0.4134968924 ) AvgTol = 0.006591900949 ( 0.00663549168 )
|
||||
LABELS : N0Labels = 278 ( 286 ) N1Labels = 6 ( 159 ) N2Labels = 0 ( 0 ) TotalLabels = 284 ( 445 ) NameLabels = 278 ( 286 ) ColorLabels = 270 ( 437 ) LayerLabels = 270 ( 437 )
|
||||
LABELS : N0Labels = 278 ( 286 ) N1Labels = 10 ( 635 ) N2Labels = 0 ( 0 ) TotalLabels = 288 ( 921 ) NameLabels = 278 ( 286 ) ColorLabels = 274 ( 913 ) LayerLabels = 270 ( 913 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = RED ( RED )
|
||||
|
@ -12,7 +12,7 @@ CHECKSHAPE : Wires = 3 ( 5 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) So
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 61 ( 61 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 61 ( 61 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.3140268251 ( 0.3140268243 ) AvgTol = 0.0004719499868 ( 0.0004897135517 )
|
||||
LABELS : N0Labels = 61 ( 61 ) N1Labels = 0 ( 1080 ) N2Labels = 0 ( 0 ) TotalLabels = 61 ( 1141 ) NameLabels = 61 ( 61 ) ColorLabels = 61 ( 1141 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 61 ( 61 ) N1Labels = 0 ( 1212 ) N2Labels = 0 ( 0 ) TotalLabels = 61 ( 1273 ) NameLabels = 61 ( 61 ) ColorLabels = 61 ( 1273 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = CYAN GREEN WHITE ( CYAN GREEN WHITE )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 345 ( 734 ) Summary = 345 ( 73
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2297 ( 2297 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2297 ( 2297 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.2778575821 ( 0.2778575802 ) AvgTol = 0.00112790974 ( 0.00112004948 )
|
||||
LABELS : N0Labels = 2329 ( 2329 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2329 ( 2329 ) NameLabels = 2329 ( 2329 ) ColorLabels = 2319 ( 2329 ) LayerLabels = 2319 ( 2329 )
|
||||
TOLERANCE : MaxTol = 0.2778575821 ( 0.2778575802 ) AvgTol = 0.001127909739 ( 0.00112004948 )
|
||||
LABELS : N0Labels = 2329 ( 2329 ) N1Labels = 0 ( 8643 ) N2Labels = 0 ( 0 ) TotalLabels = 2329 ( 10972 ) NameLabels = 2329 ( 2329 ) ColorLabels = 2319 ( 10972 ) LayerLabels = 2319 ( 10972 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 8 ( 8 )
|
||||
COLORS : Colors = CYAN CYAN2 GREEN LEMONCHIFFON1 MAGENTA MAGENTA2 WHITE YELLOW ( CYAN CYAN2 GREEN LEMONCHIFFON1 MAGENTA MAGENTA2 WHITE YELLOW )
|
||||
|
@ -8,12 +8,12 @@ set filename y306351fM.igs
|
||||
|
||||
set ref_data {
|
||||
DATA : Faulties = 0 ( 1 ) Warnings = 0 ( 0 ) Summary = 0 ( 1 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 180 ( 951 ) Summary = 180 ( 951 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 183 ( 951 ) Summary = 183 ( 951 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 390 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 392 ( 390 ) FreeWire = 20 ( 20 )
|
||||
TOLERANCE : MaxTol = 1e-005 ( 1.00030003e-005 ) AvgTol = 1.800814403e-007 ( 7.374328322e-006 )
|
||||
LABELS : N0Labels = 1528 ( 1528 ) N1Labels = 0 ( 1296 ) N2Labels = 0 ( 0 ) TotalLabels = 1528 ( 2824 ) NameLabels = 1528 ( 1528 ) ColorLabels = 1507 ( 2824 ) LayerLabels = 1504 ( 2820 )
|
||||
TOLERANCE : MaxTol = 1e-05 ( 1.00030003e-05 ) AvgTol = 1.900914531e-07 ( 7.374328322e-06 )
|
||||
LABELS : N0Labels = 1528 ( 1528 ) N1Labels = 20 ( 1296 ) N2Labels = 0 ( 0 ) TotalLabels = 1548 ( 2824 ) NameLabels = 1528 ( 1528 ) ColorLabels = 1527 ( 2824 ) LayerLabels = 1504 ( 2820 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 3 ( 3 )
|
||||
COLORS : Colors = BLUE CYAN WHITE ( BLUE CYAN WHITE )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 72 ( 497 ) Summary = 72 ( 497
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 215 ( 215 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 215 ( 215 ) FreeWire = 0 ( 4 )
|
||||
TOLERANCE : MaxTol = 0.6931734571 ( 0.6931734576 ) AvgTol = 0.009873722918 ( 0.009848531139 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 223 ( 1192 ) N2Labels = 0 ( 0 ) TotalLabels = 224 ( 1193 ) NameLabels = 224 ( 332 ) ColorLabels = 223 ( 1192 ) LayerLabels = 223 ( 1192 )
|
||||
TOLERANCE : MaxTol = 0.6931734571 ( 0.6931734576 ) AvgTol = 0.009873721107 ( 0.009848531139 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 219 ( 1696 ) N2Labels = 0 ( 0 ) TotalLabels = 220 ( 1697 ) NameLabels = 220 ( 328 ) ColorLabels = 219 ( 1696 ) LayerLabels = 219 ( 1696 )
|
||||
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 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 178 ( 178 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.4113920266 ( 0.4113920255 ) AvgTol = 0.004712367758 ( 0.00474257079 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 179 ( 553 ) N2Labels = 0 ( 0 ) TotalLabels = 180 ( 554 ) NameLabels = 180 ( 332 ) ColorLabels = 179 ( 553 ) LayerLabels = 0 ( 0 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 178 ( 1163 ) N2Labels = 0 ( 0 ) TotalLabels = 179 ( 1164 ) NameLabels = 179 ( 331 ) ColorLabels = 178 ( 1163 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = WHITE ( WHITE )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 28 ) Summary = 0 ( 28 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 322 ( 322 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 322 ( 322 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 2.657548494e-005 ( 1e-005 ) AvgTol = 7.614147437e-007 ( 1.244067797e-006 )
|
||||
TOLERANCE : MaxTol = 2.657548494e-05 ( 1e-05 ) AvgTol = 7.614151387e-07 ( 1.244067797e-06 )
|
||||
LABELS : N0Labels = 321 ( 321 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 321 ( 321 ) NameLabels = 321 ( 321 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -6,12 +6,12 @@ set filename PRO9505.igs
|
||||
|
||||
set ref_data {
|
||||
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 43 ( 194 ) Summary = 43 ( 194 )
|
||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 55 ( 194 ) Summary = 55 ( 194 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 126 ( 126 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 126 ( 126 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.956222643 ( 0.956222643 ) AvgTol = 0.02522387789 ( 0.02522525371 )
|
||||
LABELS : N0Labels = 126 ( 126 ) N1Labels = 0 ( 129 ) N2Labels = 0 ( 0 ) TotalLabels = 126 ( 255 ) NameLabels = 126 ( 255 ) ColorLabels = 126 ( 255 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.956222643 ( 0.956222643 ) AvgTol = 0.02522385151 ( 0.0252252553 )
|
||||
LABELS : N0Labels = 126 ( 126 ) N1Labels = 0 ( 699 ) N2Labels = 0 ( 0 ) TotalLabels = 126 ( 825 ) NameLabels = 126 ( 255 ) ColorLabels = 126 ( 825 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = GREEN ( 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: COLORS : Faulty"
|
||||
|
||||
|
||||
set filename Radhaus.igs
|
||||
@ -10,11 +11,11 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 153 ( 2069 ) Summary = 153 ( 2
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 532 ( 532 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 532 ( 532 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.888818095 ( 0.8888180952 ) AvgTol = 0.02520544 ( 0.02520812283 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 534 ( 4073 ) N2Labels = 0 ( 0 ) TotalLabels = 535 ( 4074 ) NameLabels = 535 ( 833 ) ColorLabels = 534 ( 4073 ) LayerLabels = 532 ( 4071 )
|
||||
TOLERANCE : MaxTol = 0.888818095 ( 0.8888180952 ) AvgTol = 0.02520540155 ( 0.02520812283 )
|
||||
LABELS : N0Labels = 1 ( 1 ) N1Labels = 532 ( 4846 ) N2Labels = 0 ( 0 ) TotalLabels = 533 ( 4847 ) NameLabels = 533 ( 831 ) ColorLabels = 532 ( 4846 ) LayerLabels = 532 ( 4844 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 2 ( 2 )
|
||||
COLORS : Colors = BLUE WHITE ( BLUE WHITE )
|
||||
NCOLORS : NColors = 1 ( 2 )
|
||||
COLORS : Colors = BLUE ( BLUE WHITE )
|
||||
NLAYERS : NLayers = 6 ( 6 )
|
||||
LAYERS : Layers = 193 198 223 233 243 253 ( 193 198 223 233 243 253 )
|
||||
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 5 ( 8 ) Summary = 5 ( 8 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1521 ( 1521 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1521 ( 1521 ) FreeWire = 20 ( 20 )
|
||||
TOLERANCE : MaxTol = 0.99945453 ( 0.9994545568 ) AvgTol = 0.05493282944 ( 0.0549332116 )
|
||||
LABELS : N0Labels = 1502 ( 1502 ) N1Labels = 60 ( 473 ) N2Labels = 0 ( 0 ) TotalLabels = 1562 ( 1975 ) NameLabels = 1562 ( 1580 ) ColorLabels = 1561 ( 1974 ) LayerLabels = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 0.99945453 ( 0.9994545568 ) AvgTol = 0.05493266383 ( 0.0549332116 )
|
||||
LABELS : N0Labels = 1502 ( 1502 ) N1Labels = 30 ( 4747 ) N2Labels = 0 ( 0 ) TotalLabels = 1532 ( 6249 ) NameLabels = 1532 ( 1550 ) ColorLabels = 1531 ( 6248 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
COLORS : Colors = GOLD ( GOLD )
|
||||
|
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 88 ( 88 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 88 ( 88 ) NameLabels = 88 ( 88 ) ColorLabels = 41 ( 88 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 1 ( 1 )
|
||||
|
@ -1,7 +1,7 @@
|
||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||
set filename ardi1.igs
|
||||
|
||||
# set in as local length unit
|
||||
# set in as local lenght unit
|
||||
set lengthunit_start "in"
|
||||
|
||||
set ref_data {
|
||||
@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 6 ) Summary = 2 ( 6 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4 ( 4 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 4 ( 4 ) FreeWire = 0 ( 0 )
|
||||
TOLERANCE : MaxTol = 1.000100001e-007 ( 1.000100001e-007 ) AvgTol = 1.000015385e-007 ( 1.000015385e-007 )
|
||||
TOLERANCE : MaxTol = 1.000100001e-07 ( 1.000100001e-07 ) AvgTol = 1.000015385e-07 ( 1.000015385e-07 )
|
||||
LABELS : N0Labels = 4 ( 4 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 4 ( 4 ) NameLabels = 4 ( 4 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 0 ( 0 )
|
||||
|
@ -10,8 +10,8 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
|
||||
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 )
|
||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 0 ( 0 ) FreeWire = 1 ( 1 )
|
||||
TOLERANCE : MaxTol = 1e-007 ( 1e-007 ) AvgTol = 1e-007 ( 1e-007 )
|
||||
LABELS : N0Labels = 148 ( 148 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 148 ( 148 ) NameLabels = 148 ( 148 ) ColorLabels = 135 ( 148 ) LayerLabels = 135 ( 148 )
|
||||
TOLERANCE : MaxTol = 1e-07 ( 1e-07 ) AvgTol = 1e-07 ( 1e-07 )
|
||||
LABELS : N0Labels = 148 ( 148 ) N1Labels = 1 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 149 ( 148 ) NameLabels = 148 ( 148 ) ColorLabels = 136 ( 148 ) LayerLabels = 135 ( 148 )
|
||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||
NCOLORS : NColors = 4 ( 4 )
|
||||
COLORS : Colors = CYAN GREEN MAGENTA YELLOW ( CYAN GREEN MAGENTA YELLOW )
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user