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

0028250: Data Exchange - Wrong number of geometric tolerance modifiers.

fix some copy paste mistakes,
update test cases.
This commit is contained in:
ika 2016-12-20 13:25:02 +03:00 committed by kgv
parent b6826918fe
commit 51663cb434
9 changed files with 20 additions and 10 deletions

View File

@ -89,7 +89,7 @@ void RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol::ReadStep
Handle(StepDimTol_HArray1OfGeometricToleranceModifier) aModifiers;
Standard_Integer sub = 0;
if ( data->ReadSubList (num, 1, "modifiers", ach, sub) ) {
Standard_Integer nb0 = data->NbParams(sub5);
Standard_Integer nb0 = data->NbParams(sub);
aModifiers = new StepDimTol_HArray1OfGeometricToleranceModifier (1, nb0);
Standard_Integer num2 = sub;
for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {

View File

@ -84,7 +84,7 @@ void RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod::ReadStep
Handle(StepDimTol_HArray1OfGeometricToleranceModifier) aModifiers;
Standard_Integer sub = 0;
if ( data->ReadSubList (num, 1, "modifiers", ach, sub) ) {
Standard_Integer nb0 = data->NbParams(sub5);
Standard_Integer nb0 = data->NbParams(sub);
aModifiers = new StepDimTol_HArray1OfGeometricToleranceModifier (1, nb0);
Standard_Integer num2 = sub;
for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {

View File

@ -3237,7 +3237,7 @@ static void WriteGeomTolerance (const Handle(XSControl_WorkSession) &WS,
Standard_Integer aModifNb = aModifiers.Length();
if (anObject->GetMaterialRequirementModifier() != XCAFDimTolObjects_GeomToleranceMatReqModif_None)
aModifNb++;
for (Standard_Integer i = 1; i < aModifiers.Length(); i++)
for (Standard_Integer i = 1; i <= aModifiers.Length(); i++)
if (aModifiers.Value(i) == XCAFDimTolObjects_GeomToleranceModif_All_Around ||
aModifiers.Value(i) == XCAFDimTolObjects_GeomToleranceModif_All_Over)
aModifNb--;

View File

@ -428,10 +428,20 @@ static Standard_Integer DumpNbDGTs (Draw_Interpretor& di, Standard_Integer argc,
Handle(XCAFDimTolObjects_GeomToleranceObject) anObject = aGTAttr->GetObject();
if (anObject.IsNull())
continue;
if (anObject->GetModifiers().Length() > 0 ||
anObject->GetMaterialRequirementModifier() != XCAFDimTolObjects_GeomToleranceMatReqModif_None) {
if (anObject->GetMaterialRequirementModifier() != XCAFDimTolObjects_GeomToleranceMatReqModif_None) {
nbWithModif++;
}
else if (anObject->GetModifiers().Length() > 0) {
Standard_Boolean isHasModif = Standard_False;
for (Standard_Integer i = 1; i <= anObject->GetModifiers().Length(); i++)
if (anObject->GetModifiers().Value(i) != XCAFDimTolObjects_GeomToleranceModif_All_Around &&
anObject->GetModifiers().Value(i) != XCAFDimTolObjects_GeomToleranceModif_All_Over) {
isHasModif = Standard_True;
break;
}
if (isHasModif)
nbWithModif++;
}
if (anObject->GetMaxValueModifier() != 0) {
nbWithMaxTol++;
}

View File

@ -10,7 +10,7 @@ set ref_data {
NbOfWithPath : 0
NbOfCommonLabels : 0
NbOfTolerances : 6
NbOfGTWithModifiers : 1
NbOfGTWithModifiers : 0
NbOfGTWithMaxTolerance : 0
NbOfGTWithDatums : 5
NbOfDatumFeature : 3

View File

@ -10,7 +10,7 @@ set ref_data {
NbOfWithPath : 0
NbOfCommonLabels : 0
NbOfTolerances : 33
NbOfGTWithModifiers : 23
NbOfGTWithModifiers : 17
NbOfGTWithMaxTolerance : 0
NbOfGTWithDatums : 30
NbOfDatumFeature : 10

View File

@ -10,7 +10,7 @@ set ref_data {
NbOfWithPath : 0
NbOfCommonLabels : 0
NbOfTolerances : 33
NbOfGTWithModifiers : 23
NbOfGTWithModifiers : 17
NbOfGTWithMaxTolerance : 0
NbOfGTWithDatums : 30
NbOfDatumFeature : 10

View File

@ -10,7 +10,7 @@ set ref_data {
NbOfWithPath : 0
NbOfCommonLabels : 0
NbOfTolerances : 31
NbOfGTWithModifiers : 8
NbOfGTWithModifiers : 6
NbOfGTWithMaxTolerance : 0
NbOfGTWithDatums : 30
NbOfDatumFeature : 6

View File

@ -10,7 +10,7 @@ set ref_data {
NbOfWithPath : 0
NbOfCommonLabels : 0
NbOfTolerances : 31
NbOfGTWithModifiers : 8
NbOfGTWithModifiers : 6
NbOfGTWithMaxTolerance : 0
NbOfGTWithDatums : 30
NbOfDatumFeature : 6