mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0022742: Not all constructors defined in TNaming_Identifier.cdl are implemented.
This commit is contained in:
parent
92434a36ef
commit
0ddd904c6a
@ -28,7 +28,7 @@ is
|
|||||||
|
|
||||||
Create (Lab : Label from TDF;
|
Create (Lab : Label from TDF;
|
||||||
S : Shape from TopoDS;
|
S : Shape from TopoDS;
|
||||||
Context : NamedShape from TNaming;
|
ContextNS : NamedShape from TNaming;
|
||||||
Geom : Boolean from Standard)
|
Geom : Boolean from Standard)
|
||||||
returns Identifier from TNaming;
|
returns Identifier from TNaming;
|
||||||
|
|
||||||
@ -80,6 +80,9 @@ is
|
|||||||
Localizer : in out Localizer from TNaming;
|
Localizer : in out Localizer from TNaming;
|
||||||
NS : NamedShape from TNaming);
|
NS : NamedShape from TNaming);
|
||||||
|
|
||||||
|
|
||||||
|
Init(me : in out; Context : Shape from TopoDS) is private;
|
||||||
|
|
||||||
fields
|
fields
|
||||||
|
|
||||||
myTDFAcces : Label from TDF;
|
myTDFAcces : Label from TDF;
|
||||||
|
@ -64,15 +64,41 @@ TNaming_Identifier::TNaming_Identifier(const TDF_Label& LabAcces,
|
|||||||
:myTDFAcces(LabAcces), myShape(S), myOneOnly(OneOnly),
|
:myTDFAcces(LabAcces), myShape(S), myOneOnly(OneOnly),
|
||||||
myDone(Standard_False),myIsFeature(Standard_False)
|
myDone(Standard_False),myIsFeature(Standard_False)
|
||||||
|
|
||||||
|
{
|
||||||
|
Init(Context);
|
||||||
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : TNaming_Identifier
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
|
||||||
|
TNaming_Identifier::TNaming_Identifier(const TDF_Label& LabAcces,
|
||||||
|
const TopoDS_Shape& S,
|
||||||
|
const Handle(TNaming_NamedShape)& ContextNS,
|
||||||
|
const Standard_Boolean OneOnly)
|
||||||
|
:myTDFAcces(LabAcces), myShape(S), myOneOnly(OneOnly),
|
||||||
|
myDone(Standard_False),myIsFeature(Standard_False)
|
||||||
|
|
||||||
|
{
|
||||||
|
const TopoDS_Shape& aContext = TNaming_Tool::GetShape (ContextNS);
|
||||||
|
Init(aContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : Init
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void TNaming_Identifier::Init(const TopoDS_Shape& Context)
|
||||||
{
|
{
|
||||||
Handle(TNaming_UsedShapes) US;
|
Handle(TNaming_UsedShapes) US;
|
||||||
LabAcces.Root().FindAttribute(TNaming_UsedShapes::GetID(),US);
|
myTDFAcces.Root().FindAttribute(TNaming_UsedShapes::GetID(),US);
|
||||||
|
|
||||||
TNaming_Localizer Localizer;
|
TNaming_Localizer Localizer;
|
||||||
Localizer.Init (US,LabAcces.Transaction());
|
Localizer.Init (US,myTDFAcces.Transaction());
|
||||||
|
|
||||||
Handle(TNaming_NamedShape) NS;
|
Handle(TNaming_NamedShape) NS;
|
||||||
NS = TNaming_Tool::NamedShape(S,LabAcces);
|
NS = TNaming_Tool::NamedShape(myShape, myTDFAcces);
|
||||||
if (NS.IsNull()) {
|
if (NS.IsNull()) {
|
||||||
AncestorIdentification(Localizer, Context);
|
AncestorIdentification(Localizer, Context);
|
||||||
return;
|
return;
|
||||||
@ -97,8 +123,6 @@ myDone(Standard_False),myIsFeature(Standard_False)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Type
|
//function : Type
|
||||||
//purpose :
|
//purpose :
|
||||||
|
Loading…
x
Reference in New Issue
Block a user