mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-16 02:28:35 +05:00
1748 lines
70 KiB
C++
1748 lines
70 KiB
C++
|
using namespace std;
|
||
|
|
||
|
#include "GEOM_Superv_i.hh"
|
||
|
|
||
|
//=============================================================================
|
||
|
// constructor:
|
||
|
//=============================================================================
|
||
|
GEOM_Superv_i::GEOM_Superv_i(CORBA::ORB_ptr orb,
|
||
|
PortableServer::POA_ptr poa,
|
||
|
PortableServer::ObjectId * contId,
|
||
|
const char *instanceName,
|
||
|
const char *interfaceName) :
|
||
|
Engines_Component_i(orb, poa, contId, instanceName, interfaceName)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GEOM_Superv_i");
|
||
|
|
||
|
_thisObj = this ;
|
||
|
_id = _poa->activate_object(_thisObj);
|
||
|
name_service = new SALOME_NamingService(_orb);
|
||
|
|
||
|
myGeomEngine = GEOM::GEOM_Gen::_nil();
|
||
|
myStudyID = -1;
|
||
|
|
||
|
myBasicOp = GEOM::GEOM_IBasicOperations::_nil();
|
||
|
my3DPrimOp = GEOM::GEOM_I3DPrimOperations::_nil();
|
||
|
myBoolOp = GEOM::GEOM_IBooleanOperations::_nil();
|
||
|
myInsOp = GEOM::GEOM_IInsertOperations::_nil();
|
||
|
myTransfOp = GEOM::GEOM_ITransformOperations::_nil();
|
||
|
myShapesOp = GEOM::GEOM_IShapesOperations::_nil();
|
||
|
myBlocksOp = GEOM::GEOM_IBlocksOperations::_nil();
|
||
|
myCurvesOp = GEOM::GEOM_ICurvesOperations::_nil();
|
||
|
myLocalOp = GEOM::GEOM_ILocalOperations::_nil();
|
||
|
myGroupOp = GEOM::GEOM_IGroupOperations::_nil();
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// destructor
|
||
|
//=============================================================================
|
||
|
GEOM_Superv_i::~GEOM_Superv_i()
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::~GEOM_Superv_i");
|
||
|
delete name_service;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : register()
|
||
|
// purpose : register 'name' in 'name_service'
|
||
|
//============================================================================
|
||
|
void GEOM_Superv_i::register_name(char * name)
|
||
|
{
|
||
|
GEOM::GEOM_Superv_ptr g = GEOM::GEOM_Superv::_narrow(POA_GEOM::GEOM_Superv::_this());
|
||
|
name_service->Register(g, strdup(name));
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// setGEOMEngine:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::setGeomEngine()
|
||
|
{
|
||
|
// get GEOM_Gen engine
|
||
|
SALOME_LifeCycleCORBA* lcc = new SALOME_LifeCycleCORBA( name_service );
|
||
|
Engines::Component_var comp = lcc->FindOrLoad_Component( "FactoryServer", "GEOM" );
|
||
|
|
||
|
myGeomEngine = GEOM::GEOM_Gen::_narrow(comp);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// SetStudyID:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::SetStudyID( CORBA::Long theId )
|
||
|
{
|
||
|
myStudyID = theId;
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getBasicOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getBasicOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IBasicOperations interface
|
||
|
myBasicOp = myGeomEngine->GetIBasicOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// get3DPrimOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::get3DPrimOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_I3DPrimOperations interface
|
||
|
my3DPrimOp = myGeomEngine->GetI3DPrimOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getBoolOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getBoolOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IBooleanOperations interface
|
||
|
myBoolOp = myGeomEngine->GetIBooleanOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getInsOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getInsOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IInsertOperations interface
|
||
|
myInsOp = myGeomEngine->GetIInsertOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getTransfOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getTransfOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_ITransformOperations interface
|
||
|
myTransfOp = myGeomEngine->GetITransformOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getShapesOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getShapesOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IShapesOperations interface
|
||
|
myShapesOp = myGeomEngine->GetIShapesOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getBlocksOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getBlocksOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IBlocksOperations interface
|
||
|
myBlocksOp = myGeomEngine->GetIBlocksOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getCurvesOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getCurvesOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_ICurvesOperations interface
|
||
|
myCurvesOp = myGeomEngine->GetICurvesOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getLocalOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getLocalOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_ILocalOperations interface
|
||
|
myLocalOp = myGeomEngine->GetILocalOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// getGroupOp:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::getGroupOp()
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
// get GEOM_IGroupOperations interface
|
||
|
myGroupOp = myGeomEngine->GetIGroupOperations(myStudyID);
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : Save()
|
||
|
// purpose : save OCAF/Geom document
|
||
|
//============================================================================
|
||
|
SALOMEDS::TMPFile* GEOM_Superv_i::Save(SALOMEDS::SComponent_ptr theComponent,
|
||
|
const char* theURL,
|
||
|
bool isMultiFile)
|
||
|
{
|
||
|
SALOMEDS::TMPFile_var aStreamFile;
|
||
|
return aStreamFile._retn();
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : SaveASCII()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
SALOMEDS::TMPFile* GEOM_Superv_i::SaveASCII(SALOMEDS::SComponent_ptr theComponent,
|
||
|
const char* theURL,
|
||
|
bool isMultiFile)
|
||
|
{
|
||
|
SALOMEDS::TMPFile_var aStreamFile;
|
||
|
return aStreamFile._retn();
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : Load()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::Load(SALOMEDS::SComponent_ptr theComponent,
|
||
|
const SALOMEDS::TMPFile& theStream,
|
||
|
const char* theURL,
|
||
|
bool isMultiFile)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : LoadASCII()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::LoadASCII(SALOMEDS::SComponent_ptr theComponent,
|
||
|
const SALOMEDS::TMPFile& theStream,
|
||
|
const char* theURL,
|
||
|
bool isMultiFile)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : Close()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
void GEOM_Superv_i::Close(SALOMEDS::SComponent_ptr theComponent)
|
||
|
{}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : ComponentDataType()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
char* GEOM_Superv_i::ComponentDataType()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : IORToLocalPersistentID()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
char* GEOM_Superv_i::IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
|
||
|
const char* IORString,
|
||
|
CORBA::Boolean isMultiFile,
|
||
|
CORBA::Boolean isASCII)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : LocalPersistentIDToIOR()
|
||
|
// purpose : Create/Load CORBA object from a persistent ref (an entry)
|
||
|
// : Used when a study is loaded
|
||
|
// : The IOR (IORName) of object created is returned
|
||
|
//============================================================================
|
||
|
char* GEOM_Superv_i::LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
|
||
|
const char* aLocalPersistentID,
|
||
|
CORBA::Boolean isMultiFile,
|
||
|
CORBA::Boolean isASCII)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : CanPublishInStudy
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
bool GEOM_Superv_i::CanPublishInStudy(CORBA::Object_ptr theIOR)
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
return myGeomEngine->CanPublishInStudy(theIOR);
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : PublishInStudy
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
SALOMEDS::SObject_ptr GEOM_Superv_i::PublishInStudy(SALOMEDS::Study_ptr theStudy,
|
||
|
SALOMEDS::SObject_ptr theSObject,
|
||
|
CORBA::Object_ptr theObject,
|
||
|
const char* theName) throw (SALOME::SALOME_Exception)
|
||
|
{
|
||
|
if (CORBA::is_nil(myGeomEngine))
|
||
|
setGeomEngine();
|
||
|
return myGeomEngine->PublishInStudy(theStudy, theSObject, theObject, theName);
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : CanCopy()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::CanCopy(SALOMEDS::SObject_ptr theObject)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : CopyFrom()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
SALOMEDS::TMPFile* GEOM_Superv_i::CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID)
|
||
|
{
|
||
|
SALOMEDS::TMPFile_var aStreamFile;
|
||
|
return aStreamFile._retn();
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : CanPaste()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::CanPaste(const char* theComponentName, CORBA::Long theObjectID)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//============================================================================
|
||
|
// function : PasteInto()
|
||
|
// purpose :
|
||
|
//============================================================================
|
||
|
SALOMEDS::SObject_ptr GEOM_Superv_i::PasteInto(const SALOMEDS::TMPFile& theStream,
|
||
|
CORBA::Long theObjectID,
|
||
|
SALOMEDS::SObject_ptr theObject)
|
||
|
{
|
||
|
SALOMEDS::SObject_var aNewSO;
|
||
|
return aNewSO._retn();
|
||
|
}
|
||
|
|
||
|
//================= Primitives Construction : BasicOperations =================
|
||
|
//=============================================================================
|
||
|
// MakePointXYZ:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePointXYZ(CORBA::Double theX,
|
||
|
CORBA::Double theY,
|
||
|
CORBA::Double theZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePointXYZ");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
// make vertex and return
|
||
|
return myBasicOp->MakePointXYZ(theX, theY, theZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePointWithReference:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePointWithReference (GEOM::GEOM_Object_ptr theReference,
|
||
|
CORBA::Double theX,
|
||
|
CORBA::Double theY,
|
||
|
CORBA::Double theZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePointWithReference");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakePointWithReference(theReference, theX, theY, theZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePointOnCurve:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePointOnCurve (GEOM::GEOM_Object_ptr theRefCurve,
|
||
|
CORBA::Double theParameter)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePointOnCurve");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakePointOnCurve(theRefCurve, theParameter);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeVectorDXDYDZ:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeVectorDXDYDZ (CORBA::Double theDX,
|
||
|
CORBA::Double theDY,
|
||
|
CORBA::Double theDZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeVectorDXDYDZ");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakeVectorDXDYDZ(theDX, theDY, theDZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeVectorTwoPnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeVectorTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeVector");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakeVectorTwoPnt(thePnt1, thePnt2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeLineTwoPnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeLineTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeLineTwoPnt");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakeLineTwoPnt(thePnt1, thePnt2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePlaneThreePnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePlaneThreePnt (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2,
|
||
|
GEOM::GEOM_Object_ptr thePnt3,
|
||
|
CORBA::Double theTrimSize)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePlaneThreePnt");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakePlaneThreePnt(thePnt1, thePnt2, thePnt3, theTrimSize);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePlanePntVec:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePlanePntVec (GEOM::GEOM_Object_ptr thePnt,
|
||
|
GEOM::GEOM_Object_ptr theVec,
|
||
|
CORBA::Double theTrimSize)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePlanePntVec");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakePlanePntVec(thePnt, theVec, theTrimSize);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePlaneFace:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePlaneFace (GEOM::GEOM_Object_ptr theFace,
|
||
|
CORBA::Double theTrimSize)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePlaneFace");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakePlaneFace(theFace, theTrimSize);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeMarker:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeMarker
|
||
|
(CORBA::Double theOX , CORBA::Double theOY , CORBA::Double theOZ,
|
||
|
CORBA::Double theXDX, CORBA::Double theXDY, CORBA::Double theXDZ,
|
||
|
CORBA::Double theYDX, CORBA::Double theYDY, CORBA::Double theYDZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeMarker");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
return myBasicOp->MakeMarker(theOX, theOY, theOZ, theXDX, theXDY, theXDZ, theYDX, theYDY, theYDZ);
|
||
|
}
|
||
|
|
||
|
//================= Primitives Construction : 3DPrimOperations ================
|
||
|
//=============================================================================
|
||
|
// MakeBox:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeBox (CORBA::Double theX1,
|
||
|
CORBA::Double theY1,
|
||
|
CORBA::Double theZ1,
|
||
|
CORBA::Double theX2,
|
||
|
CORBA::Double theY2,
|
||
|
CORBA::Double theZ2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeBox");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeBoxTwoPnt(myBasicOp->MakePointXYZ(theX1, theY1, theZ1),
|
||
|
myBasicOp->MakePointXYZ(theX2, theY2, theZ2));
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeBoxDXDYDZ:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeBoxDXDYDZ (CORBA::Double theDX,
|
||
|
CORBA::Double theDY,
|
||
|
CORBA::Double theDZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeBoxDXDYDZ");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeBoxDXDYDZ(theDX, theDY, theDZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeBoxTwoPnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeBoxTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeBoxTwoPnt");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeBoxTwoPnt(thePnt1, thePnt2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeCylinderPntVecRH:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCylinderPntVecRH (GEOM::GEOM_Object_ptr thePnt,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theRadius,
|
||
|
CORBA::Double theHeight)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCylinderPntVecRH");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeCylinderPntVecRH(thePnt, theAxis, theRadius, theHeight);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeCylinderRH:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCylinderRH (CORBA::Double theR,
|
||
|
CORBA::Double theH)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCylinderRH");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeCylinderRH(theR, theH);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSphere:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSphere (CORBA::Double theX,
|
||
|
CORBA::Double theY,
|
||
|
CORBA::Double theZ,
|
||
|
CORBA::Double theRadius)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSphepe");
|
||
|
if (CORBA::is_nil(myBasicOp)) getBasicOp();
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeSpherePntR(myBasicOp->MakePointXYZ(theX, theY, theZ), theRadius);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSphereR:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSphereR (CORBA::Double theR)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSphereR");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeSphereR(theR);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSpherePntR:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSpherePntR (GEOM::GEOM_Object_ptr thePnt,
|
||
|
CORBA::Double theR)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSpherePntR");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeSpherePntR(thePnt, theR);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeTorusPntVecRR:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeTorusPntVecRR (GEOM::GEOM_Object_ptr thePnt,
|
||
|
GEOM::GEOM_Object_ptr theVec,
|
||
|
CORBA::Double theRMajor,
|
||
|
CORBA::Double theRMinor)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeTorusPntVecRR");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeTorusPntVecRR(thePnt, theVec, theRMajor, theRMinor);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeTorusRR:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeTorusRR (CORBA::Double theRMajor,
|
||
|
CORBA::Double theRMinor)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeTorusRR");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeTorusRR(theRMajor, theRMinor);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeConePntVecR1R2H:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeConePntVecR1R2H (GEOM::GEOM_Object_ptr thePnt,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theR1,
|
||
|
CORBA::Double theR2,
|
||
|
CORBA::Double theHeight)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeConePntVecR1R2H");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeConePntVecR1R2H(thePnt, theAxis, theR1, theR2, theHeight);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeConeR1R2H:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeConeR1R2H (CORBA::Double theR1,
|
||
|
CORBA::Double theR2,
|
||
|
CORBA::Double theHeight)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeConeR1R2H");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeConeR1R2H(theR1, theR2, theHeight);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePrismVecH:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePrismVecH (GEOM::GEOM_Object_ptr theBase,
|
||
|
GEOM::GEOM_Object_ptr theVec,
|
||
|
CORBA::Double theH)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePrismVecH");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakePrismVecH(theBase, theVec, theH);
|
||
|
}
|
||
|
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePrismTwoPnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePrismTwoPnt (GEOM::GEOM_Object_ptr theBase,
|
||
|
GEOM::GEOM_Object_ptr thePoint1,
|
||
|
GEOM::GEOM_Object_ptr thePoint2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePrismTwoPnt");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakePrismTwoPnt(theBase, thePoint1, thePoint2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePipe:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePipe (GEOM::GEOM_Object_ptr theBase,
|
||
|
GEOM::GEOM_Object_ptr thePath)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePipe");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakePipe(theBase, thePath);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeRevolutionAxisAngle:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeRevolutionAxisAngle (GEOM::GEOM_Object_ptr theBase,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theAngle)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeRevolutionAxisAngle");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeRevolutionAxisAngle(theBase, theAxis, theAngle);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFilling:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFilling (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Long theMinDeg, CORBA::Long theMaxDeg,
|
||
|
CORBA::Double theTol2D, CORBA::Double theTol3D,
|
||
|
CORBA::Long theNbIter)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFilling");
|
||
|
if (CORBA::is_nil(my3DPrimOp)) get3DPrimOp();
|
||
|
return my3DPrimOp->MakeFilling(theShape, theMinDeg, theMaxDeg, theTol2D, theTol3D, theNbIter);
|
||
|
}
|
||
|
|
||
|
//============================= BooleanOperations =============================
|
||
|
//=============================================================================
|
||
|
// MakeBoolean:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeBoolean (GEOM::GEOM_Object_ptr theShape1,
|
||
|
GEOM::GEOM_Object_ptr theShape2,
|
||
|
CORBA::Long theOperation)
|
||
|
{
|
||
|
// theOperation indicates the operation to be done:
|
||
|
// 1 - Common, 2 - Cut, 3 - Fuse, 4 - Section
|
||
|
MESSAGE("GEOM_Superv_i::MakeBoolean");
|
||
|
if (CORBA::is_nil(myBoolOp)) getBoolOp();
|
||
|
return myBoolOp->MakeBoolean(theShape1, theShape2, theOperation);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFuse:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFuse (GEOM::GEOM_Object_ptr theShape1,
|
||
|
GEOM::GEOM_Object_ptr theShape2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFuse");
|
||
|
if (CORBA::is_nil(myBoolOp)) getBoolOp();
|
||
|
return myBoolOp->MakeBoolean(theShape1, theShape2, 3);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePartition:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePartition (const GEOM::ListOfGO& theShapes,
|
||
|
const GEOM::ListOfGO& theTools,
|
||
|
const GEOM::ListOfGO& theKeepInside,
|
||
|
const GEOM::ListOfGO& theRemoveInside,
|
||
|
const CORBA::Short theLimit,
|
||
|
const CORBA::Boolean theRemoveWebs,
|
||
|
const GEOM::ListOfLong& theMaterials)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePartition");
|
||
|
if (CORBA::is_nil(myBoolOp)) getBoolOp();
|
||
|
return myBoolOp->MakePartition(theShapes, theTools, theKeepInside, theRemoveInside,
|
||
|
theLimit, theRemoveWebs, theMaterials);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeHalfPartition:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeHalfPartition (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr thePlane)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeHalfPartition");
|
||
|
if (CORBA::is_nil(myBoolOp)) getBoolOp();
|
||
|
return myBoolOp->MakeHalfPartition(theShape, thePlane);
|
||
|
}
|
||
|
|
||
|
//============================== InsertOperations =============================
|
||
|
//=============================================================================
|
||
|
// MakeCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCopy (GEOM::GEOM_Object_ptr theOriginal)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCopy");
|
||
|
if (CORBA::is_nil(myInsOp)) getInsOp();
|
||
|
return myInsOp->MakeCopy(theOriginal);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// Export:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::Export (GEOM::GEOM_Object_ptr theObject,
|
||
|
const char* theFileName,
|
||
|
const char* theFormatName)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::Export");
|
||
|
if (CORBA::is_nil(myInsOp)) getInsOp();
|
||
|
myInsOp->Export(theObject, theFileName, theFormatName);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// Import:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::Import (const char* theFileName,
|
||
|
const char* theFormatName)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::Import");
|
||
|
if (CORBA::is_nil(myInsOp)) getInsOp();
|
||
|
return myInsOp->Import(theFileName, theFormatName);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ImportTranslators:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::ImportTranslators (GEOM::string_array_out theFormats,
|
||
|
GEOM::string_array_out thePatterns)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ImportTranslators");
|
||
|
if (CORBA::is_nil(myInsOp)) getInsOp();
|
||
|
myInsOp->ImportTranslators(theFormats, thePatterns);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ExportTranslators:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::ExportTranslators (GEOM::string_array_out theFormats,
|
||
|
GEOM::string_array_out thePatterns)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ExportTranslators");
|
||
|
if (CORBA::is_nil(myInsOp)) getInsOp();
|
||
|
myInsOp->ExportTranslators(theFormats, thePatterns);
|
||
|
}
|
||
|
|
||
|
//============================= TransformOperations ===========================
|
||
|
//=============================================================================
|
||
|
// TranslateTwoPoints:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateTwoPoints (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint1,
|
||
|
GEOM::GEOM_Object_ptr thePoint2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateTwoPoints");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateTwoPoints(theObject, thePoint1, thePoint2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// TranslateTwoPointsCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateTwoPointsCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint1,
|
||
|
GEOM::GEOM_Object_ptr thePoint2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateTwoPointsCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateTwoPointsCopy(theObject, thePoint1, thePoint2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// TranslateDXDYDZ:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateDXDYDZ (GEOM::GEOM_Object_ptr theObject,
|
||
|
CORBA::Double theDX,
|
||
|
CORBA::Double theDY,
|
||
|
CORBA::Double theDZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateDXDYDZ");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateDXDYDZ(theObject, theDX, theDY, theDZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// TranslateDXDYDZCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateDXDYDZCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
CORBA::Double theDX,
|
||
|
CORBA::Double theDY,
|
||
|
CORBA::Double theDZ)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateDXDYDZCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateDXDYDZCopy(theObject, theDX, theDY, theDZ);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// TranslateVector:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateVector (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theVector)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateVector");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateVector(theObject, theVector);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// TranslateVectorCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::TranslateVectorCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theVector)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::TranslateVectorCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->TranslateVectorCopy(theObject, theVector);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MultiTranslate1D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MultiTranslate1D (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theVector,
|
||
|
CORBA::Double theStep,
|
||
|
CORBA::Long theNbTimes)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MultiTranslate1D");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MultiTranslate1D(theObject, theVector, theStep, theNbTimes);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MultiTranslate2D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MultiTranslate2D (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theVector1,
|
||
|
CORBA::Double theStep1,
|
||
|
CORBA::Long theNbTimes1,
|
||
|
GEOM::GEOM_Object_ptr theVector2,
|
||
|
CORBA::Double theStep2,
|
||
|
CORBA::Long theNbTimes2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MultiTranslate2D");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MultiTranslate2D(theObject, theVector1, theStep1, theNbTimes1,
|
||
|
theVector2, theStep2, theNbTimes2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// Rotate:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::Rotate (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theAngle)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::Rotate");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->Rotate(theObject, theAxis, theAngle);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// RotateCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::RotateCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theAngle)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::RotateCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->RotateCopy(theObject, theAxis, theAngle);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MultiRotate1D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MultiRotate1D (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Long theNbTimes)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MultiRotate1D");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MultiRotate1D(theObject, theAxis, theNbTimes);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MultiRotate2D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MultiRotate2D (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis,
|
||
|
CORBA::Double theAngle,
|
||
|
CORBA::Long theNbTimes1,
|
||
|
CORBA::Double theStep,
|
||
|
CORBA::Long theNbTimes2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MultiRotate2D");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MultiRotate2D(theObject, theAxis, theAngle, theNbTimes1, theStep, theNbTimes2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorPlane:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorPlane (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePlane)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorPlane");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorPlane(theObject, thePlane);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorPlaneCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorPlaneCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePlane)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorPlaneCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorPlaneCopy(theObject, thePlane);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorAxis:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorAxis (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorAxis");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorAxis(theObject, theAxis);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorAxisCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorAxisCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theAxis)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorAxisCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorAxisCopy(theObject, theAxis);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorPoint:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorPoint (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorPoint");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorPoint(theObject, thePoint);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MirrorPointCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MirrorPointCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MirrorPointCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->MirrorPointCopy(theObject, thePoint);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// OffsetShape:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::OffsetShape (GEOM::GEOM_Object_ptr theObject,
|
||
|
CORBA::Double theOffset)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::OffsetShape");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->OffsetShape(theObject, theOffset);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// OffsetShapeCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::OffsetShapeCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
CORBA::Double theOffset)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::OffsetShapeCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->OffsetShapeCopy(theObject, theOffset);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ScaleShape:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::ScaleShape (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint,
|
||
|
CORBA::Double theFactor)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ScaleShape");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->ScaleShape(theObject, thePoint, theFactor);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ScaleShapeCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::ScaleShapeCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr thePoint,
|
||
|
CORBA::Double theFactor)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ScaleShapeCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->ScaleShapeCopy(theObject, thePoint, theFactor);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// PositionShape:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::PositionShape (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theStartLCS,
|
||
|
GEOM::GEOM_Object_ptr theEndLCS)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::PositionShape");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->PositionShape(theObject, theStartLCS, theEndLCS);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// PositionShapeCopy:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::PositionShapeCopy (GEOM::GEOM_Object_ptr theObject,
|
||
|
GEOM::GEOM_Object_ptr theStartLCS,
|
||
|
GEOM::GEOM_Object_ptr theEndLCS)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::PositionShapeCopy");
|
||
|
if (CORBA::is_nil(myTransfOp)) getTransfOp();
|
||
|
return myTransfOp->PositionShapeCopy(theObject, theStartLCS, theEndLCS);
|
||
|
}
|
||
|
|
||
|
//=============================== ShapesOperations ============================
|
||
|
//=============================================================================
|
||
|
// Make:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeEdge (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeEdge");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeEdge(thePnt1, thePnt2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeWire:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeWire (const GEOM::ListOfGO& theEdgesAndWires)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeWire");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeWire(theEdgesAndWires);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFace:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFace (GEOM::GEOM_Object_ptr theWire,
|
||
|
CORBA::Boolean isPlanarWanted)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFace");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeFace(theWire, isPlanarWanted);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFaceWires:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFaceWires (const GEOM::ListOfGO& theWires,
|
||
|
CORBA::Boolean isPlanarWanted)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFaceWires");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeFaceWires(theWires, isPlanarWanted);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeShell:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeShell (const GEOM::ListOfGO& theFacesAndShells)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeShell");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeShell(theFacesAndShells);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSolidShell:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSolidShell (GEOM::GEOM_Object_ptr theShell)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSolidShell");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeSolidShell(theShell);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSolidShells:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSolidShells (const GEOM::ListOfGO& theShells)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSolidShells");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeSolidShells(theShells);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeCompound:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCompound (const GEOM::ListOfGO& theShapes)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCompound");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeCompound(theShapes);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeGlueFaces:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeGlueFaces (GEOM::GEOM_Object_ptr theShape,
|
||
|
const CORBA::Double theTolerance)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeGlueFaces");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeGlueFaces(theShape, theTolerance);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeExplode:
|
||
|
//=============================================================================
|
||
|
GEOM::ListOfGO* GEOM_Superv_i::MakeExplode (GEOM::GEOM_Object_ptr theShape,
|
||
|
const CORBA::Long theShapeType,
|
||
|
const CORBA::Boolean isSorted)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeExplode");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->MakeExplode(theShape, theShapeType, isSorted);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// NumberOfFaces:
|
||
|
//=============================================================================
|
||
|
CORBA::Long GEOM_Superv_i::NumberOfFaces (GEOM::GEOM_Object_ptr theShape)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::NumberOfFaces");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->NumberOfFaces(theShape);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// NumberOfEdges:
|
||
|
//=============================================================================
|
||
|
CORBA::Long GEOM_Superv_i::NumberOfEdges (GEOM::GEOM_Object_ptr theShape)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::NumberOfEdges");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->NumberOfEdges(theShape);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ChangeOrientation:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::ChangeOrientation (GEOM::GEOM_Object_ptr theShape)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ChangeOrientation");
|
||
|
if (CORBA::is_nil(myShapesOp)) getShapesOp();
|
||
|
return myShapesOp->ChangeOrientation(theShape);
|
||
|
}
|
||
|
|
||
|
|
||
|
//=============================== BlocksOperations ============================
|
||
|
//=============================================================================
|
||
|
// MakeQuad4Vertices:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeQuad4Vertices (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2,
|
||
|
GEOM::GEOM_Object_ptr thePnt3,
|
||
|
GEOM::GEOM_Object_ptr thePnt4)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeQuad4Vertices");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeQuad4Vertices(thePnt1, thePnt2, thePnt3, thePnt4);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeQuad:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeQuad (GEOM::GEOM_Object_ptr theEdge1,
|
||
|
GEOM::GEOM_Object_ptr theEdge2,
|
||
|
GEOM::GEOM_Object_ptr theEdge3,
|
||
|
GEOM::GEOM_Object_ptr theEdge4)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeQuad");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeQuad(theEdge1, theEdge2, theEdge3, theEdge4);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeQuad2Edges:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeQuad2Edges (GEOM::GEOM_Object_ptr theEdge1,
|
||
|
GEOM::GEOM_Object_ptr theEdge2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeQuad2Edges");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeQuad2Edges(theEdge1, theEdge2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeHexa:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeHexa (GEOM::GEOM_Object_ptr theFace1,
|
||
|
GEOM::GEOM_Object_ptr theFace2,
|
||
|
GEOM::GEOM_Object_ptr theFace3,
|
||
|
GEOM::GEOM_Object_ptr theFace4,
|
||
|
GEOM::GEOM_Object_ptr theFace5,
|
||
|
GEOM::GEOM_Object_ptr theFace6)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeHexa");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeHexa(theFace1, theFace2, theFace3, theFace4, theFace5, theFace6);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeHexa2Faces:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeHexa2Faces (GEOM::GEOM_Object_ptr theFace1,
|
||
|
GEOM::GEOM_Object_ptr theFace2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeHexa2Faces");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeHexa2Faces(theFace1, theFace2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetPoint:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetPoint (GEOM::GEOM_Object_ptr theShape,
|
||
|
const CORBA::Double theX,
|
||
|
const CORBA::Double theY,
|
||
|
const CORBA::Double theZ,
|
||
|
const CORBA::Double theEpsilon)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetPoint");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetPoint(theShape, theX, theY, theZ, theEpsilon);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetEdge:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetEdge (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr thePoint1,
|
||
|
GEOM::GEOM_Object_ptr thePoint2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetEdge");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetEdge(theShape, thePoint1, thePoint2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetEdgeNearPoint:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetEdgeNearPoint (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr thePoint)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetEdgeNearPoint");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetEdgeNearPoint(theShape, thePoint);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetFaceByPoints:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetFaceByPoints (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr thePoint1,
|
||
|
GEOM::GEOM_Object_ptr thePoint2,
|
||
|
GEOM::GEOM_Object_ptr thePoint3,
|
||
|
GEOM::GEOM_Object_ptr thePoint4)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetFaceByPoints");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetFaceByPoints(theShape, thePoint1, thePoint2, thePoint3, thePoint4);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetFaceByEdges:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetFaceByEdges (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr theEdge1,
|
||
|
GEOM::GEOM_Object_ptr theEdge2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetFaceByEdges");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetFaceByEdges(theShape, theEdge1, theEdge2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetOppositeFace:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetOppositeFace (GEOM::GEOM_Object_ptr theBlock,
|
||
|
GEOM::GEOM_Object_ptr theFace)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetOppositeFace");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetOppositeFace(theBlock, theFace);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetFaceNearPoint:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetFaceNearPoint (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr thePoint)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetFaceNearPoint");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetFaceNearPoint(theShape, thePoint);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetFaceByNormale:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetFaceByNormale (GEOM::GEOM_Object_ptr theBlock,
|
||
|
GEOM::GEOM_Object_ptr theVector)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetFaceByNormale");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetFaceByNormale(theBlock, theVector);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// IsCompoundOfBlocks:
|
||
|
//=============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::IsCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
|
||
|
const CORBA::Long theMinNbFaces,
|
||
|
const CORBA::Long theMaxNbFaces,
|
||
|
CORBA::Long& theNbBlocks)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::IsCompoundOfBlocks");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->IsCompoundOfBlocks(theCompound, theMinNbFaces, theMaxNbFaces, theNbBlocks);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// CheckCompoundOfBlocks:
|
||
|
//=============================================================================
|
||
|
CORBA::Boolean GEOM_Superv_i::CheckCompoundOfBlocks
|
||
|
(GEOM::GEOM_Object_ptr theCompound,
|
||
|
GEOM::GEOM_IBlocksOperations::BCErrors_out theErrors)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::CheckCompoundOfBlocks");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->CheckCompoundOfBlocks(theCompound, theErrors);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// PrintBCErrors:
|
||
|
//=============================================================================
|
||
|
char* GEOM_Superv_i::PrintBCErrors (GEOM::GEOM_Object_ptr theCompound,
|
||
|
const GEOM::GEOM_IBlocksOperations::BCErrors& theErrors)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::PrintBCErrors");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->PrintBCErrors(theCompound, theErrors);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// ExplodeCompoundOfBlocks:
|
||
|
//=============================================================================
|
||
|
GEOM::ListOfGO* GEOM_Superv_i::ExplodeCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
|
||
|
const CORBA::Long theMinNbFaces,
|
||
|
const CORBA::Long theMaxNbFaces)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::ExplodeCompoundOfBlocks");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->ExplodeCompoundOfBlocks(theCompound, theMinNbFaces, theMaxNbFaces);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetBlockNearPoint:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetBlockNearPoint (GEOM::GEOM_Object_ptr theCompound,
|
||
|
GEOM::GEOM_Object_ptr thePoint)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetBlockNearPoint");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetBlockNearPoint(theCompound, thePoint);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetBlockByParts:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetBlockByParts (GEOM::GEOM_Object_ptr theCompound,
|
||
|
const GEOM::ListOfGO& theParts)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetBlockByParts");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetBlockByParts(theCompound, theParts);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetBlocksByParts:
|
||
|
//=============================================================================
|
||
|
GEOM::ListOfGO* GEOM_Superv_i::GetBlocksByParts (GEOM::GEOM_Object_ptr theCompound,
|
||
|
const GEOM::ListOfGO& theParts)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetBlocksByParts");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->GetBlocksByParts(theCompound, theParts);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeMultiTransformation1D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeMultiTransformation1D (GEOM::GEOM_Object_ptr theBlock,
|
||
|
const CORBA::Long theDirFace1,
|
||
|
const CORBA::Long theDirFace2,
|
||
|
const CORBA::Long theNbTimes)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeMultiTransformation1D");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeMultiTransformation1D(theBlock, theDirFace1, theDirFace2, theNbTimes);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeMultiTransformation2D:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeMultiTransformation2D
|
||
|
(GEOM::GEOM_Object_ptr theBlock,
|
||
|
const CORBA::Long theDirFace1U,
|
||
|
const CORBA::Long theDirFace2U,
|
||
|
const CORBA::Long theNbTimesU,
|
||
|
const CORBA::Long theDirFace1V,
|
||
|
const CORBA::Long theDirFace2V,
|
||
|
const CORBA::Long theNbTimesV)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeMultiTransformation2D");
|
||
|
if (CORBA::is_nil(myBlocksOp)) getBlocksOp();
|
||
|
return myBlocksOp->MakeMultiTransformation2D(theBlock,
|
||
|
theDirFace1U, theDirFace2U, theNbTimesU,
|
||
|
theDirFace1V, theDirFace2V, theNbTimesV);
|
||
|
}
|
||
|
|
||
|
//=============================== CurvesOperations ============================
|
||
|
//=============================================================================
|
||
|
// MakeCirclePntVecR:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCirclePntVecR (GEOM::GEOM_Object_ptr theCenter,
|
||
|
GEOM::GEOM_Object_ptr theVector,
|
||
|
CORBA::Double theR)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCirclePntVecR");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeCirclePntVecR(theCenter, theVector, theR);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeCircleThreePnt:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeCircleThreePnt (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2,
|
||
|
GEOM::GEOM_Object_ptr thePnt3)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeCircleThreePnt");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeCircleThreePnt(thePnt1, thePnt2, thePnt3);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeEllipse:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeEllipse (GEOM::GEOM_Object_ptr theCenter,
|
||
|
GEOM::GEOM_Object_ptr theVector,
|
||
|
CORBA::Double theRMajor,
|
||
|
CORBA::Double theRMinor)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeEllipse");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeEllipse(theCenter, theVector, theRMajor, theRMinor);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeArc:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeArc (GEOM::GEOM_Object_ptr thePnt1,
|
||
|
GEOM::GEOM_Object_ptr thePnt2,
|
||
|
GEOM::GEOM_Object_ptr thePnt3)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeArc");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeArc(thePnt1, thePnt2, thePnt3);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakePolyline:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakePolyline (const GEOM::ListOfGO& thePoints)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakePolyline");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakePolyline(thePoints);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSplineBezier:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSplineBezier (const GEOM::ListOfGO& thePoints)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSplineBezier");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeSplineBezier(thePoints);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSplineInterpolation:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSplineInterpolation (const GEOM::ListOfGO& thePoints)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSplineInterpolation");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeSplineInterpolation(thePoints);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeSketcher:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeSketcher (const char* theCommand,
|
||
|
const GEOM::ListOfDouble& theWorkingPlane)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeSketcher");
|
||
|
if (CORBA::is_nil(myCurvesOp)) getCurvesOp();
|
||
|
return myCurvesOp->MakeSketcher(theCommand, theWorkingPlane);
|
||
|
}
|
||
|
|
||
|
//=============================== LocalOperations =============================
|
||
|
//=============================================================================
|
||
|
// MakeFilletAll:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFilletAll (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theR)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFilletAllMakeSketcher");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeFilletAll(theShape, theR);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFilletEdges:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFilletEdges (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theR,
|
||
|
const GEOM::ListOfLong& theEdges)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFilletEdges");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeFilletEdges(theShape, theR, theEdges);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeFilletFaces:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeFilletFaces (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theR,
|
||
|
const GEOM::ListOfLong& theFaces)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeFilletFaces");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeFilletFaces(theShape, theR, theFaces);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeChamferAll:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeChamferAll (GEOM::GEOM_Object_ptr theShape, CORBA::Double theD)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeChamferAll");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeChamferAll(theShape, theD);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeChamferEdge:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeChamferEdge (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theD1, CORBA::Double theD2,
|
||
|
CORBA::Long theFace1, CORBA::Long theFace2)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeChamferEdge");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeChamferEdge(theShape, theD1, theD2, theFace1, theFace2);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeChamferFaces:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeChamferFaces (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theD1, CORBA::Double theD2,
|
||
|
const GEOM::ListOfLong& theFaces)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeChamferFaces");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeChamferFaces(theShape, theD1, theD2, theFaces);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// MakeArchimede:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::MakeArchimede (GEOM::GEOM_Object_ptr theShape,
|
||
|
CORBA::Double theWeight,
|
||
|
CORBA::Double theWaterDensity,
|
||
|
CORBA::Double theMeshingDeflection)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::MakeArchimede");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->MakeArchimede(theShape, theWeight, theWaterDensity, theMeshingDeflection);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetSubShapeIndexMakeFilletAll:
|
||
|
//=============================================================================
|
||
|
CORBA::Long GEOM_Superv_i::GetSubShapeIndex (GEOM::GEOM_Object_ptr theShape,
|
||
|
GEOM::GEOM_Object_ptr theSubShape)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetSubShapeIndexMakeArchimede");
|
||
|
if (CORBA::is_nil(myLocalOp)) getLocalOp();
|
||
|
return myLocalOp->GetSubShapeIndex(theShape, theSubShape);
|
||
|
}
|
||
|
|
||
|
//=============================== GroupOperations =============================
|
||
|
//=============================================================================
|
||
|
// CreateGroup:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::CreateGroup (GEOM::GEOM_Object_ptr theMainShape,
|
||
|
CORBA::Long theShapeType)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::CreateGroup");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
return myGroupOp->CreateGroup(theMainShape, theShapeType);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// AddObject:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::AddObject (GEOM::GEOM_Object_ptr theGroup,
|
||
|
CORBA::Long theSubShapeId)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::AddObject");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
myGroupOp->AddObject(theGroup, theSubShapeId);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// RemoveObject:
|
||
|
//=============================================================================
|
||
|
void GEOM_Superv_i::RemoveObject (GEOM::GEOM_Object_ptr theGroup,
|
||
|
CORBA::Long theSubShapeId)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::RemoveObject");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
myGroupOp->RemoveObject(theGroup, theSubShapeId);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetType:
|
||
|
//=============================================================================
|
||
|
CORBA::Long GEOM_Superv_i::GetType (GEOM::GEOM_Object_ptr theGroup)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetType");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
return myGroupOp->GetType(theGroup);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetMainShape:
|
||
|
//=============================================================================
|
||
|
GEOM::GEOM_Object_ptr GEOM_Superv_i::GetMainShape (GEOM::GEOM_Object_ptr theGroup)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetMainShape");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
return myGroupOp->GetMainShape(theGroup);
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
// GetObjects:
|
||
|
//=============================================================================
|
||
|
GEOM::ListOfLong* GEOM_Superv_i::GetObjects (GEOM::GEOM_Object_ptr theGroup)
|
||
|
{
|
||
|
MESSAGE("GEOM_Superv_i::GetObjects");
|
||
|
if (CORBA::is_nil(myGroupOp)) getGroupOp();
|
||
|
return myGroupOp->GetObjects(theGroup);
|
||
|
}
|
||
|
|
||
|
//=====================================================================================
|
||
|
// EXPORTED METHODS
|
||
|
//=====================================================================================
|
||
|
extern "C"
|
||
|
{
|
||
|
PortableServer::ObjectId * GEOM_SupervEngine_factory(CORBA::ORB_ptr orb,
|
||
|
PortableServer::POA_ptr poa,
|
||
|
PortableServer::ObjectId * contId,
|
||
|
const char *instanceName,
|
||
|
const char * interfaceName)
|
||
|
{
|
||
|
GEOM_Superv_i * myGEOM_Superv_i = new GEOM_Superv_i(orb, poa, contId, instanceName, interfaceName);
|
||
|
myGEOM_Superv_i->register_name("/myGEOM_Superv");
|
||
|
return myGEOM_Superv_i->getId() ;
|
||
|
}
|
||
|
}
|