From: enk Date: Wed, 18 Oct 2006 12:20:31 +0000 (+0000) Subject: Added PrsMergerOnField method X-Git-Tag: mergeto_V3_2_0_maintainance_30Nov06~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7efaca5c1c4b9660af16a1da6db0d04765b890a2;p=modules%2Fvisu.git Added PrsMergerOnField method --- diff --git a/src/ENGINE/VISU_Engine_i.cc b/src/ENGINE/VISU_Engine_i.cc index 0563dad2..02667a32 100644 --- a/src/ENGINE/VISU_Engine_i.cc +++ b/src/ENGINE/VISU_Engine_i.cc @@ -321,6 +321,14 @@ namespace VISU{ return myVisuGen->Plot3DOnField(theResult,theMeshName,theEntity,theFieldName,theIteration); } + PrsMerger_ptr VISU_Gen_i::PrsMergerOnField(Result_ptr theResult, + const char* theMeshName, + VISU::Entity theEntity, + const char* theFieldName, + CORBA::Double theIteration) + { + return myVisuGen->PrsMergerOnField(theResult,theMeshName,theEntity,theFieldName,theIteration); + } Table_ptr VISU_Gen_i::CreateTable(const char* theTableEntry){ return myVisuGen->CreateTable(theTableEntry); diff --git a/src/ENGINE/VISU_Engine_i.hh b/src/ENGINE/VISU_Engine_i.hh index 3f605b43..933cd2cb 100644 --- a/src/ENGINE/VISU_Engine_i.hh +++ b/src/ENGINE/VISU_Engine_i.hh @@ -105,6 +105,10 @@ namespace VISU{ virtual ScalarMapOnDeformedShape_ptr ScalarMapOnDeformedShapeOnField (Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, const char* theFieldName, CORBA::Double theIteration); + + virtual PrsMerger_ptr PrsMergerOnField + (Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, + const char* theFieldName, CORBA::Double theIteration); //Create Digital Presentation virtual Table_ptr CreateTable(const char* theTableEntry); virtual Curve_ptr CreateCurve(Table_ptr theTable, CORBA::Long theHRow, CORBA::Long theVRow);