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

0029855: Data Exchange, XCAF GD&T - PMI objects copy constructors ignore presentation

Add all missing values.
This commit is contained in:
skl 2020-11-11 13:27:33 +03:00 committed by bugmaster
parent c5b42a1afe
commit ad2ef2599a
4 changed files with 21 additions and 3 deletions

View File

@ -42,17 +42,23 @@ XCAFDimTolObjects_DatumObject::XCAFDimTolObjects_DatumObject(const Handle(XCAFDi
myModifierWithValue = theObj->myModifierWithValue;
myValueOfModifier = theObj->myValueOfModifier;
myDatumTarget = theObj->myDatumTarget;
myPosition = theObj->myPosition;
myIsDTarget = theObj->myIsDTarget;
myIsValidDT = theObj->myIsValidDT;
myAxis = theObj->myAxis;
myDTargetType = theObj->myDTargetType;
myLength = theObj->myLength;
myWidth = theObj->myWidth;
myDatumTargetNumber = theObj->myDatumTargetNumber;
myAxis = theObj->myAxis;
myPlane = theObj->myPlane;
myPnt= theObj->myPnt;
myPntText= theObj->myPntText;
myHasPlane = theObj->myHasPlane;
myHasPnt = theObj->myHasPnt;
myHasPntText = theObj->myHasPntText;
myPresentation = theObj->myPresentation;
mySemanticName = theObj->mySemanticName;
myPresentationName = theObj->myPresentationName;
}
//=======================================================================

View File

@ -203,7 +203,7 @@ public:
DEFINE_STANDARD_RTTIEXT(XCAFDimTolObjects_DatumObject,Standard_Transient)
private:
private:
Handle(TCollection_HAsciiString) myName;
XCAFDimTolObjects_DatumModifiersSequence myModifiers;
@ -214,10 +214,10 @@ private:
Standard_Boolean myIsDTarget;
Standard_Boolean myIsValidDT;
XCAFDimTolObjects_DatumTargetType myDTargetType;
gp_Ax2 myAxis;
Standard_Real myLength;
Standard_Real myWidth;
Standard_Integer myDatumTargetNumber;
gp_Ax2 myAxis;
gp_Ax2 myPlane;
gp_Pnt myPnt;
gp_Pnt myPntText;

View File

@ -58,6 +58,16 @@ XCAFDimTolObjects_DimensionObject::XCAFDimTolObjects_DimensionObject(const Handl
myPlane = theObj->myPlane;
myHasPntText = theObj->myHasPntText;
mySemanticName = theObj->mySemanticName;
myPresentation = theObj->myPresentation;
myPresentationName = theObj->myPresentationName;
for (int i = 0; i < theObj->myDescriptions.Length(); i++)
{
myDescriptions.Append(theObj->myDescriptions(i));
}
for (int i = 0; i < theObj->myDescriptionNames.Length(); i++)
{
myDescriptionNames.Append(theObj->myDescriptionNames(i));
}
}
//=======================================================================

View File

@ -55,6 +55,8 @@ XCAFDimTolObjects_GeomToleranceObject::XCAFDimTolObjects_GeomToleranceObject(con
mySemanticName = theObj->mySemanticName;
myAffectedPlaneType = theObj->myAffectedPlaneType;
myAffectedPlane = theObj->myAffectedPlane;
myPresentation = theObj->myPresentation;
myPresentationName = theObj->myPresentationName;
}
//=======================================================================