From d65efbda4b254e10b09b74017f1233865869d953 Mon Sep 17 00:00:00 2001 From: jfa Date: Wed, 20 Jun 2007 08:42:50 +0000 Subject: [PATCH] Update idl interface documentation. --- .../visugenidl_doc/VISU__Gen_8idl-source.html | 1647 +++++++++-------- .../VISU/visugenidl_doc/VISU__Gen_8idl.html | 31 +- .../interfaceVISU_1_1Animation.html | 16 +- .../visugenidl_doc/interfaceVISU_1_1Base.html | 4 +- .../interfaceVISU_1_1ColoredPrs3d.html | 12 +- .../interfaceVISU_1_1Container.html | 4 +- .../interfaceVISU_1_1Curve.html | 12 +- .../interfaceVISU_1_1CutLines.html | 196 +- .../interfaceVISU_1_1CutPlanes.html | 190 +- .../interfaceVISU_1_1DeformedShape.html | 196 +- .../interfaceVISU_1_1GaussPoints.html | 12 +- .../interfaceVISU_1_1IsoSurfaces.html | 196 +- .../visugenidl_doc/interfaceVISU_1_1Mesh.html | 4 +- .../interfaceVISU_1_1Plot3D.html | 190 +- .../interfaceVISU_1_1Prs3d.html | 4 +- .../interfaceVISU_1_1PrsObject.html | 4 +- .../interfaceVISU_1_1RemovableObject.html | 4 +- .../interfaceVISU_1_1Result.html | 20 +- .../interfaceVISU_1_1ScalarMap.html | 190 +- ...rfaceVISU_1_1ScalarMapOnDeformedShape.html | 318 +++- .../interfaceVISU_1_1StreamLines.html | 196 +- .../interfaceVISU_1_1Table.html | 12 +- .../interfaceVISU_1_1TableView.html | 20 +- .../interfaceVISU_1_1VISU__Gen.html | 184 +- .../interfaceVISU_1_1Vectors.html | 196 +- .../visugenidl_doc/interfaceVISU_1_1View.html | 20 +- .../interfaceVISU_1_1View3D.html | 48 +- .../interfaceVISU_1_1ViewManager.html | 4 +- .../interfaceVISU_1_1XYPlot.html | 44 +- .../VISU/visugenidl_doc/namespaceVISU.html | 416 +++++ 30 files changed, 3282 insertions(+), 1108 deletions(-) create mode 100644 doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html diff --git a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl-source.html b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl-source.html index 9dd48fe8..a484e54f 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl-source.html +++ b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl-source.html @@ -12,6 +12,18 @@ +
+
+
+

idl/VISU_Gen.idl

Go to the documentation of this file.
00001 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 00002 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
 00003 // 
@@ -48,841 +60,868 @@
 00043   //-------------------------------------------------------
 00044   typedef string IdType;
 00045 
-00050   enum Scaling{ LINEAR, 
-00051           LOGARITHMIC 
-00052            };
-00053 
-00058   enum Entity{ NODE, 
-00059                EDGE, 
-00060             FACE, 
-00061             CELL  
-00062             };
-00063 
-00068   enum VISUType {
-00069     TNONE, 
-00070     TCURVE, 
-00071     TTABLE, 
-00072     TCONTAINER, 
-00073     TMESH, 
-00074     TSCALARMAP, 
-00075     TISOSURFACE, 
-00076     TDEFORMEDSHAPE, 
-00077     TSCALARMAPONDEFORMEDSHAPE, 
-00078     TGAUSSPOINTS, 
-00079     TPLOT3D, 
-00080     TCUTPLANES, 
-00081     TCUTLINES, 
-00082     TVECTORS, 
-00083     TSTREAMLINES, 
-00084     TVISUGEN, 
-00085     TVIEWMANAGER, 
-00086     TRESULT, 
-00087     TXYPLOT, 
-00088     TTABLEVIEW, 
-00089     TVIEW3D, 
-00090     TGAUSSVIEW, 
-00091     TENTITY, 
-00092     TFAMILY, 
-00093     TGROUP, 
-00094     TFIELD, 
-00095     TTIMESTAMP, 
-00096     TANIMATION, 
-00097     TALL
-00098   };
-00099 
-00100   interface Base {
-00104     IdType GetID();
-00105 
-00109     VISUType GetType();
-00110   };
-00111 
-00117   interface RemovableObject : Base {
-00121     void RemoveFromStudy();
-00122   };
-00123 
-00128   interface PrsObject : RemovableObject {
-00129   };
-00130 
-00131   //-------------------------------------------------------
-00136   interface Table : PrsObject {
-00141     void SetTitle(in string theTitle);
-00142 
-00147     string GetTitle();
-00148 
-00152     enum Orientation {
-00153       HORIZONTAL, 
-00154       VERTIACAL   
-00155     };
-00156 
-00162     void SetOrientation(in Orientation theOrientation);
-00163 
-00169     Orientation GetOrientation();
-00170 
-00175     long GetNbRows();
-00176 
-00181     long GetNbColumns();
-00182   };
-00183 
-00184   //-------------------------------------------------------
-00190   interface Curve : PrsObject {
-00195     void SetTitle(in string theTitle);
-00196 
-00201     string GetTitle();
-00202 
-00208     void SetColor(in SALOMEDS::Color theColor);
-00209 
-00215     SALOMEDS::Color GetColor();
-00216 
-00222     enum MarkerType { NONE,
-00223                 CIRCLE,
-00224                 RECTANGLE,
-00225                 DIAMOND,
-00226                 DTRIANGLE,
-00227                 UTRIANGLE,
-00228                 LTRIANGLE,
-00229                 RTRIANGLE,
-00230                 CROSS,
-00231                 XCROSS
-00232     };
-00233 
-00241     void SetMarker(in MarkerType theType);
-00242 
-00250     MarkerType GetMarker();
-00251 
-00256     enum LineType{ VOIDLINE, SOLIDLINE, DASHLINE, DOTLINE, DASHDOTLINE, DASHDOTDOTLINE};
-00257 
-00263     void SetLine(in LineType theType, in long theLineWidth);
-00264 
-00269     LineType GetLine();
-00270 
-00275     long GetLineWidth();
-00276   };
-00277 
-00278   //-------------------------------------------------------
-00284   interface Container : PrsObject {
-00289     void AddCurve(in Curve theCurve);
-00290 
-00295     void RemoveCurve(in Curve theCurve);
-00296 
-00301     long GetNbCurves();
-00302 
-00306     void Clear();
-00307   };
-00308 
-00309   //-------------------------------------------------------
-00314   interface Prs3d : PrsObject, SALOME::GenericObj {
-00315     //interface Prs3d : PrsObject{
-00316     void SetOffset(in float theDx, in float theDy, in float theDz);
-00317     void GetOffset(out float theDx, out float theDy, out float theDz);
-00318   };
-00319 
-00324   enum PresentationType{ POINT,
-00325                 WIREFRAME,
-00326                 SHADED,
-00327                 INSIDEFRAME,
-00328                 SURFACEFRAME,
-00329                 SHRINK
-00330   };
-00331 
-00337   interface Mesh : Prs3d {
-00342     void SetCellColor(in SALOMEDS::Color theColor);
-00343 
-00347     SALOMEDS::Color GetCellColor();
-00348 
-00353     void SetNodeColor(in SALOMEDS::Color theColor);
-00354 
-00358     SALOMEDS::Color GetNodeColor();
-00359 
-00364     void SetLinkColor(in SALOMEDS::Color theColor);
-00365 
-00369     SALOMEDS::Color GetLinkColor();
-00370 
-00376     void SetPresentationType(in PresentationType theType);
-00377 
-00382     PresentationType GetPresentationType();
-00383   };
-00384 
-00385 
-00386   //-------------------------------------------------------
-00395   interface ColoredPrs3d : Prs3d {
-00398     void SetScalarMode(in long theScalarMode);
-00399 
-00402     long GetScalarMode();
-00403 
-00407     double GetMin();
-00408 
-00412     double GetMax();
-00413 
-00420     void SetPosition(in double X, in double Y);
-00421 
-00425     double GetPosX();
-00426 
-00430     double GetPosY();
-00431 
-00438     void SetSize(in double theWidth, in double theHeight);
-00439 
-00444     double GetWidth();
-00445 
-00450     double GetHeight();
-00451 
-00456     void SetNbColors(in long theNbColors);
-00457 
-00463     long GetNbColors();
-00464 
-00470     void SetLabels(in long theNbLabels);
-00471 
-00477     long GetLabels();
-00478 
-00483     void SetTitle(in string theName);
-00484 
-00488     string GetTitle();
-00489   };
-00490 
-00491 
-00492   //-------------------------------------------------------
-00501   interface ScalarMap : ColoredPrs3d {
-00506     void SetScaling(in Scaling theScaling);
-00507 
-00511     Scaling GetScaling();
-00512 
-00518     void SetRange(in double theMin, in double theMax);
-00519 
-00521     enum Orientation {
-00522       HORIZONTAL, 
-00523       VERTICAL    
-00524     };
-00525 
-00531     void SetBarOrientation(in Orientation theOrientation);
-00532 
-00536     Orientation GetBarOrientation();
-00537   };
-00538 
-00539   //-------------------------------------------------------
-00544   //-------------------------------------------------------
-00545   interface GaussPoints : ColoredPrs3d {
-00546   };
-00547 
-00552   interface DeformedShape : ScalarMap {
-00557     void SetScale(in double theScale);
+00046   typedef sequence<string> string_array;
+00047 
+00052   enum Scaling{ LINEAR, 
+00053           LOGARITHMIC 
+00054            };
+00055 
+00060   enum Entity{ NODE, 
+00061                EDGE, 
+00062             FACE, 
+00063             CELL  
+00064             };
+00065 
+00070   enum VISUType {
+00071     TNONE, 
+00072     TCURVE, 
+00073     TTABLE, 
+00074     TCONTAINER, 
+00075     TMESH, 
+00076     TSCALARMAP, 
+00077     TISOSURFACE, 
+00078     TDEFORMEDSHAPE, 
+00079     TSCALARMAPONDEFORMEDSHAPE, 
+00080     TGAUSSPOINTS, 
+00081     TPRSMERGER, 
+00082     TPLOT3D, 
+00083     TCUTPLANES, 
+00084     TCUTLINES, 
+00085     TVECTORS, 
+00086     TSTREAMLINES, 
+00087     TVISUGEN, 
+00088     TVIEWMANAGER, 
+00089     TRESULT, 
+00090     TXYPLOT, 
+00091     TTABLEVIEW, 
+00092     TVIEW3D, 
+00093     TGAUSSVIEW, 
+00094     TENTITY, 
+00095     TFAMILY, 
+00096     TGROUP, 
+00097     TFIELD, 
+00098     TTIMESTAMP, 
+00099     TANIMATION, 
+00100     TALL
+00101   };
+00102 
+00103   interface Base {
+00107     IdType GetID();
+00108 
+00112     VISUType GetType();
+00113   };
+00114 
+00120   interface RemovableObject : Base {
+00124     void RemoveFromStudy();
+00125   };
+00126 
+00131   interface PrsObject : RemovableObject {
+00132   };
+00133 
+00134   //-------------------------------------------------------
+00139   interface Table : PrsObject {
+00144     void SetTitle(in string theTitle);
+00145 
+00150     string GetTitle();
+00151 
+00155     enum Orientation {
+00156       HORIZONTAL, 
+00157       VERTIACAL   
+00158     };
+00159 
+00165     void SetOrientation(in Orientation theOrientation);
+00166 
+00172     Orientation GetOrientation();
+00173 
+00178     long GetNbRows();
+00179 
+00184     long GetNbColumns();
+00185   };
+00186 
+00187   //-------------------------------------------------------
+00193   interface Curve : PrsObject {
+00198     void SetTitle(in string theTitle);
+00199 
+00204     string GetTitle();
+00205 
+00211     void SetColor(in SALOMEDS::Color theColor);
+00212 
+00218     SALOMEDS::Color GetColor();
+00219 
+00225     enum MarkerType { NONE,
+00226                 CIRCLE,
+00227                 RECTANGLE,
+00228                 DIAMOND,
+00229                 DTRIANGLE,
+00230                 UTRIANGLE,
+00231                 LTRIANGLE,
+00232                 RTRIANGLE,
+00233                 CROSS,
+00234                 XCROSS
+00235     };
+00236 
+00244     void SetMarker(in MarkerType theType);
+00245 
+00253     MarkerType GetMarker();
+00254 
+00259     enum LineType{ VOIDLINE, SOLIDLINE, DASHLINE, DOTLINE, DASHDOTLINE, DASHDOTDOTLINE};
+00260 
+00266     void SetLine(in LineType theType, in long theLineWidth);
+00267 
+00272     LineType GetLine();
+00273 
+00278     long GetLineWidth();
+00279   };
+00280 
+00281   //-------------------------------------------------------
+00287   interface Container : PrsObject {
+00292     void AddCurve(in Curve theCurve);
+00293 
+00298     void RemoveCurve(in Curve theCurve);
+00299 
+00304     long GetNbCurves();
+00305 
+00309     void Clear();
+00310   };
+00311 
+00312   //-------------------------------------------------------
+00317   interface Prs3d : PrsObject, SALOME::GenericObj {
+00318     //interface Prs3d : PrsObject{
+00319     void SetOffset(in float theDx, in float theDy, in float theDz);
+00320     void GetOffset(out float theDx, out float theDy, out float theDz);
+00321   };
+00322 
+00327   enum PresentationType{ POINT,
+00328                 WIREFRAME,
+00329                 SHADED,
+00330                 INSIDEFRAME,
+00331                 SURFACEFRAME,
+00332                 SHRINK
+00333   };
+00334 
+00340   interface Mesh : Prs3d {
+00345     void SetCellColor(in SALOMEDS::Color theColor);
+00346 
+00350     SALOMEDS::Color GetCellColor();
+00351 
+00356     void SetNodeColor(in SALOMEDS::Color theColor);
+00357 
+00361     SALOMEDS::Color GetNodeColor();
+00362 
+00367     void SetLinkColor(in SALOMEDS::Color theColor);
+00368 
+00372     SALOMEDS::Color GetLinkColor();
+00373 
+00379     void SetPresentationType(in PresentationType theType);
+00380 
+00385     PresentationType GetPresentationType();
+00386   };
+00387 
+00388 
+00389   //-------------------------------------------------------
+00398   interface ColoredPrs3d : Prs3d {
+00401     void SetScalarMode(in long theScalarMode);
+00402 
+00405     long GetScalarMode();
+00406 
+00410     double GetMin();
+00411 
+00415     double GetMax();
+00416 
+00423     void SetPosition(in double X, in double Y);
+00424 
+00428     double GetPosX();
+00429 
+00433     double GetPosY();
+00434 
+00441     void SetSize(in double theWidth, in double theHeight);
+00442 
+00447     double GetWidth();
+00448 
+00453     double GetHeight();
+00454 
+00459     void SetNbColors(in long theNbColors);
+00460 
+00466     long GetNbColors();
+00467 
+00473     void SetLabels(in long theNbLabels);
+00474 
+00480     long GetLabels();
+00481 
+00486     void SetTitle(in string theName);
+00487 
+00491     string GetTitle();
+00492   };
+00493 
+00494 
+00495   //-------------------------------------------------------
+00504   interface ScalarMap : ColoredPrs3d {
+00509     void SetScaling(in Scaling theScaling);
+00510 
+00514     Scaling GetScaling();
+00515 
+00521     void SetRange(in double theMin, in double theMax);
+00522 
+00524     enum Orientation {
+00525       HORIZONTAL, 
+00526       VERTICAL    
+00527     };
+00528 
+00534     void SetBarOrientation(in Orientation theOrientation);
+00535 
+00539     Orientation GetBarOrientation();
+00540 
+00547     void SetMeshOnGroup(in string theMeshName,
+00548                in string theGroupName);
+00549 
+00556     long AddMeshOnGroup(in string theMeshName,
+00557                in string theGroupName);
 00558 
-00562     double GetScale();
-00563 
-00566     boolean IsColored();
-00567 
-00572     void ShowColored(in boolean theColored);
-00573 
-00577     SALOMEDS::Color GetColor();
-00578 
-00583     void SetColor(in SALOMEDS::Color theColor);
-00584   };
-00585 
-00586   //-------------------------------------------------------
-00591   interface ScalarMapOnDeformedShape : ScalarMap {
-00592     
-00596     void SetSourceRange(in double theMinRange,in double theMaxRange);
-00600     double GetSourceRangeMin();
-00604     double GetSourceRangeMax();
-00605     
-00610     void SetScale(in double theScale);
-00611 
-00615     double GetScale();
-00616 
-00624     void SetScalarField(in string theMeshName,in string theFieldName,
-00625                in long theIteration,in Entity theEntity);
+00559     
+00568     void SetScalarMap(in string theMeshName,
+00569                 in Entity theEntity,
+00570                 in string theFieldName,
+00571                 in long theStampsNum);
+00572 
+00577     void RemoveAllGeom();
+00578   };
+00579 
+00580   //-------------------------------------------------------
+00585   //-------------------------------------------------------
+00586   interface GaussPoints : ColoredPrs3d {
+00587   };
+00588 
+00593   interface DeformedShape : ScalarMap {
+00598     void SetScale(in double theScale);
+00599 
+00603     double GetScale();
+00604 
+00607     boolean IsColored();
+00608 
+00613     void ShowColored(in boolean theColored);
+00614 
+00618     SALOMEDS::Color GetColor();
+00619 
+00624     void SetColor(in SALOMEDS::Color theColor);
+00625   };
 00626 
-00627   };
+00627 
 00628   //-------------------------------------------------------
-00636   interface Plot3D : ScalarMap {
-00641     enum Orientation { XY,   
-00642                  YZ,   
-00643                  ZX }; 
-00654     void SetOrientation (in Orientation theOrientation, in double theXAngle, in double theYAngle);
-00655 
-00659     Orientation GetOrientationType();
-00660 
-00665     double GetRotateX();
-00666 
-00671     double GetRotateY();
-00672 
-00678     void SetPlanePosition (in double  thePlanePosition,
-00679                   in boolean theIsRelative);
-00680 
-00684     double GetPlanePosition();
-00685 
-00689     boolean IsPositionRelative();
-00690 
-00696     void SetScaleFactor (in double theScaleFactor);
-00697 
-00702     double GetScaleFactor();
-00703 
-00708     void SetContourPrs (in boolean theIsContourPrs );
-00709 
-00713     boolean GetIsContourPrs();
-00714 
-00719     void SetNbOfContours (in long theNb);
-00720 
-00724     long GetNbOfContours();
-00725   };
-00726 
-00727   //-------------------------------------------------------
-00734   interface CutPlanes : ScalarMap {
-00739     enum Orientation {XY, 
-00740                       YZ, 
-00741                 ZX}; 
-00752     void SetOrientation(in Orientation theOrientation, in double theXAngle, in double theYAngle);
+00633   interface ScalarMapOnDeformedShape : ScalarMap {
+00634     
+00638     void SetSourceRange(in double theMinRange,in double theMaxRange);
+00642     double GetSourceRangeMin();
+00646     double GetSourceRangeMax();
+00647     
+00652     void SetScale(in double theScale);
+00653 
+00657     double GetScale();
+00658 
+00666     void SetScalarField(in string theMeshName,in string theFieldName,
+00667                in long theIteration,in Entity theEntity);
+00668 
+00669 
+00673     long GetScalarLIteration();
+00674 
+00678     Entity GetScalarEEntity();
+00679 
+00683     string GetScalarCFieldName();
+00684 
+00688     string GetScalarCMeshName();
+00689     
+00690   };
+00691   //-------------------------------------------------------
+00699   interface Plot3D : ScalarMap {
+00704     enum Orientation { XY,   
+00705                  YZ,   
+00706                  ZX }; 
+00717     void SetOrientation (in Orientation theOrientation, in double theXAngle, in double theYAngle);
+00718 
+00722     Orientation GetOrientationType();
+00723 
+00728     double GetRotateX();
+00729 
+00734     double GetRotateY();
+00735 
+00741     void SetPlanePosition (in double  thePlanePosition,
+00742                   in boolean theIsRelative);
+00743 
+00747     double GetPlanePosition();
+00748 
+00752     boolean IsPositionRelative();
 00753 
-00757     Orientation GetOrientationType();
-00758 
-00762     double GetRotateX();
-00763 
-00767     double GetRotateY();
-00768 
-00778     void SetDisplacement(in double theDisp);
-00779 
-00783     double GetDisplacement();
-00784 
-00790      void SetPlanePosition(in long thePlaneNumber, in double thePlanePosition);
-00791 
-00796      void SetDefault(in long thePlaneNumber);
-00797 
-00801     double GetPlanePosition(in long thePlaneNumber);
-00802 
-00807     boolean IsDefault(in long thePlaneNumber);
-00808 
-00813     void SetNbPlanes(in long theNb);
-00814 
-00818     long GetNbPlanes();
-00819   };
-00820 
-00821   //-------------------------------------------------------
-00836   interface CutLines : ScalarMap {
-00845     void SetOrientation(in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle);
-00846 
-00856     void SetOrientation2(in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle);
-00857 
-00861     CutPlanes::Orientation GetOrientationType();
-00862 
-00866     CutPlanes::Orientation GetOrientationType2();
-00867 
-00871     double GetRotateX();
-00872 
-00876     double GetRotateX2();
+00759     void SetScaleFactor (in double theScaleFactor);
+00760 
+00765     double GetScaleFactor();
+00766 
+00771     void SetContourPrs (in boolean theIsContourPrs );
+00772 
+00776     boolean GetIsContourPrs();
+00777 
+00782     void SetNbOfContours (in long theNb);
+00783 
+00787     long GetNbOfContours();
+00788   };
+00789 
+00790   //-------------------------------------------------------
+00797   interface CutPlanes : ScalarMap {
+00802     enum Orientation {XY, 
+00803                       YZ, 
+00804                 ZX}; 
+00815     void SetOrientation(in Orientation theOrientation, in double theXAngle, in double theYAngle);
+00816 
+00820     Orientation GetOrientationType();
+00821 
+00825     double GetRotateX();
+00826 
+00830     double GetRotateY();
+00831 
+00841     void SetDisplacement(in double theDisp);
+00842 
+00846     double GetDisplacement();
+00847 
+00853      void SetPlanePosition(in long thePlaneNumber, in double thePlanePosition);
+00854 
+00859      void SetDefault(in long thePlaneNumber);
+00860 
+00864     double GetPlanePosition(in long thePlaneNumber);
+00865 
+00870     boolean IsDefault(in long thePlaneNumber);
+00871 
+00876     void SetNbPlanes(in long theNb);
 00877 
-00881     double GetRotateY();
-00882 
-00886     double GetRotateY2();
-00887 
-00894     void SetDisplacement(in double theDisp);
-00895 
-00902     void SetDisplacement2(in double theDisp);
-00903 
-00907     double GetDisplacement();
-00908 
-00912     double GetDisplacement2();
-00913 
-00917     void SetBasePlanePosition(in double thePlanePosition);
-00918 
-00921     double GetBasePlanePosition();
-00922 
-00927     void SetLinePosition(in long thePlaneNumber, in double thePlanePosition);
-00928 
-00932     double GetLinePosition(in long thePlaneNumber);
-00933 
-00936     void SetDefault();
-00937 
-00942     boolean IsDefault();
-00943 
-00948     void SetDefaultPosition(in long thePlaneNumber);
-00949 
-00955     boolean IsDefaultPosition(in long thePlaneNumber);
-00956 
-00961     void SetNbLines(in long theNb);
-00962 
-00966     long GetNbLines();
-00967 
-00971     void SetAllCurvesInverted(in boolean theInvert);
-00972 
-00976     boolean IsAllCurvesInverted();
-00977 
-00981     void SetUseAbsoluteLength(in boolean theAbsLength);
-00982 
-00985     boolean IsUseAbsoluteLength();
-00986   };
-00987 
-00997   interface StreamLines : DeformedShape {
-01001     enum Direction{ FORWARD,
-01002               BACKWARD,
-01003               BOTH
-01004     };
-01005 
-01026     boolean SetParams(in double theIntStep,
-01027                 in double thePropogationTime,
-01028                 in double theStepLength,
-01029                 in Prs3d thePrs3d,
-01030                 in double thePercents,
-01031                 in Direction theDirection);
-01032 
-01035     double GetIntegrationStep();
-01036 
-01039     double GetPropagationTime();
+00881     long GetNbPlanes();
+00882   };
+00883 
+00884   //-------------------------------------------------------
+00899   interface CutLines : ScalarMap {
+00908     void SetOrientation(in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle);
+00909 
+00919     void SetOrientation2(in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle);
+00920 
+00924     CutPlanes::Orientation GetOrientationType();
+00925 
+00929     CutPlanes::Orientation GetOrientationType2();
+00930 
+00934     double GetRotateX();
+00935 
+00939     double GetRotateX2();
+00940 
+00944     double GetRotateY();
+00945 
+00949     double GetRotateY2();
+00950 
+00957     void SetDisplacement(in double theDisp);
+00958 
+00965     void SetDisplacement2(in double theDisp);
+00966 
+00970     double GetDisplacement();
+00971 
+00975     double GetDisplacement2();
+00976 
+00980     void SetBasePlanePosition(in double thePlanePosition);
+00981 
+00984     double GetBasePlanePosition();
+00985 
+00990     void SetLinePosition(in long thePlaneNumber, in double thePlanePosition);
+00991 
+00995     double GetLinePosition(in long thePlaneNumber);
+00996 
+00999     void SetDefault();
+01000 
+01005     boolean IsDefault();
+01006 
+01011     void SetDefaultPosition(in long thePlaneNumber);
+01012 
+01018     boolean IsDefaultPosition(in long thePlaneNumber);
+01019 
+01024     void SetNbLines(in long theNb);
+01025 
+01029     long GetNbLines();
+01030 
+01034     void SetAllCurvesInverted(in boolean theInvert);
+01035 
+01039     boolean IsAllCurvesInverted();
 01040 
-01043     double GetStepLength();
-01044 
-01047     Prs3d GetSource();
-01048 
-01052     double GetUsedPoints();
-01053 
-01056     Direction GetDirection();
-01057   };
-01058 
-01067   interface IsoSurfaces : ScalarMap {
-01073     void SetNbSurfaces(in long theNb);
-01074 
-01078     long GetNbSurfaces();
-01079   };
-01080 
-01081   //-------------------------------------------------------
-01086   interface Vectors : DeformedShape {
-01091     void SetLineWidth(in double theWidth);
-01092 
-01096     double GetLineWidth();
-01097 
-01101     enum GlyphType{ ARROW,
-01102                     CONE2,
-01103                     CONE6,
-01104                     NONE
-01105                   };
-01106 
-01112     void SetGlyphType(in GlyphType theType);
-01113 
-01117     GlyphType GetGlyphType();
-01118 
-01122     enum GlyphPos{ CENTER, 
-01123                    TAIL,   
-01124                    HEAD  
-01125                  };
-01126 
-01132     void SetGlyphPos(in GlyphPos thePos);
-01133 
-01137     GlyphPos GetGlyphPos();
-01138   };
-01139 
-01140   //-------------------------------------------------------
-01155   interface Animation : Base {
-01159     enum AnimationMode{ PARALLEL, 
-01160                SUCCCESSIVE 
-01161     };
-01162     
-01166     boolean addField(in SALOMEDS::SObject theObject);
-01167 
-01170     void clearFields();
-01171 
-01176     void generatePresentations(in long theFieldNum);
-01177 
-01183     boolean generateFrames();
-01184 
-01187     void clearView();
-01188 
-01192 
-01195     void startAnimation();
+01044     void SetUseAbsoluteLength(in boolean theAbsLength);
+01045 
+01048     boolean IsUseAbsoluteLength();
+01049   };
+01050 
+01060   interface StreamLines : DeformedShape {
+01064     enum Direction{ FORWARD,
+01065               BACKWARD,
+01066               BOTH
+01067     };
+01068 
+01089     boolean SetParams(in double theIntStep,
+01090                 in double thePropogationTime,
+01091                 in double theStepLength,
+01092                 in Prs3d thePrs3d,
+01093                 in double thePercents,
+01094                 in Direction theDirection);
+01095 
+01098     double GetIntegrationStep();
+01099 
+01102     double GetPropagationTime();
+01103 
+01106     double GetStepLength();
+01107 
+01110     Prs3d GetSource();
+01111 
+01115     double GetUsedPoints();
+01116 
+01119     Direction GetDirection();
+01120   };
+01121 
+01130   interface IsoSurfaces : ScalarMap {
+01136     void SetNbSurfaces(in long theNb);
+01137 
+01141     long GetNbSurfaces();
+01142   };
+01143 
+01144   //-------------------------------------------------------
+01149   interface Vectors : DeformedShape {
+01154     void SetLineWidth(in double theWidth);
+01155 
+01159     double GetLineWidth();
+01160 
+01164     enum GlyphType{ ARROW,
+01165                     CONE2,
+01166                     CONE6,
+01167                     NONE
+01168                   };
+01169 
+01175     void SetGlyphType(in GlyphType theType);
+01176 
+01180     GlyphType GetGlyphType();
+01181 
+01185     enum GlyphPos{ CENTER, 
+01186                    TAIL,   
+01187                    HEAD  
+01188                  };
+01189 
+01195     void SetGlyphPos(in GlyphPos thePos);
 01196 
-01199     void stopAnimation();
-01200 
-01203     void nextFrame();
-01204 
-01207     void prevFrame();
-01208 
-01211     void firstFrame();
-01212 
-01215     void lastFrame();
-01216 
-01220     void gotoFrame(in long theFrame);
-01225     long getNbFields();
-01226 
-01229     long getNbFrames();
+01200     GlyphPos GetGlyphPos();
+01201   };
+01202 
+01203   //-------------------------------------------------------
+01218   interface Animation : Base {
+01222     enum AnimationMode{ PARALLEL, 
+01223                SUCCCESSIVE 
+01224     };
+01225     
+01229     boolean addField(in SALOMEDS::SObject theObject);
 01230 
-01233     boolean isRunning();
+01233     void clearFields();
 01234 
-01237     long getCurrentFrame();
-01238 
-01241     ColoredPrs3d getPresentation(in long theField, in long theFrame);
-01242 
-01246     void setPresentationType(in long theFieldNum, in VISUType theType);
+01239     void generatePresentations(in long theFieldNum);
+01240 
+01246     boolean generateFrames();
 01247 
-01251     VISUType getPresentationType(in long theFieldNum);
-01252 
-01256     void setSpeed(in long theSpeed);
-01257 
-01260     long getSpeed();
-01261 
-01266     boolean isProportional();
+01250     void clearView();
+01251 
+01255 
+01258     void startAnimation();
+01259 
+01262     void stopAnimation();
+01263 
+01266     void nextFrame();
 01267 
-01276     void setAnimationRange(in double theMin, in double theMax);
-01277 
-01280     double getMinRange();
-01281 
-01284     double getMaxRange();
-01285 
-01290     boolean isRangeDefined();
-01291 
-01296     void dumpTo(in string thePath);
+01270     void prevFrame();
+01271 
+01274     void firstFrame();
+01275 
+01278     void lastFrame();
+01279 
+01283     void gotoFrame(in long theFrame);
+01288     long getNbFields();
+01289 
+01292     long getNbFrames();
+01293 
+01296     boolean isRunning();
 01297 
-01305     string setDumpFormat(in string theFormat);
-01306 
-01309     boolean isCycling();
+01300     long getCurrentFrame();
+01301 
+01304     ColoredPrs3d getPresentation(in long theField, in long theFrame);
+01305 
+01309     void setPresentationType(in long theFieldNum, in VISUType theType);
 01310 
-01314     double getMinTime();
+01314     VISUType getPresentationType(in long theFieldNum);
 01315 
-01319     double getMaxTime();
+01319     void setSpeed(in long theSpeed);
 01320 
-01326     void setProportional(in boolean theProp);
-01327 
-01333     void setCycling(in boolean theCycle);
-01334 
-01335     boolean isCleaningMemoryAtEachFrame();
-01336     void setCleaningMemoryAtEachFrame(in boolean theCycle);
-01337 
-01338     SALOMEDS::SObject publishInStudy();
-01339 
-01340     void saveAnimation();
-01341 
-01342     void restoreFromStudy(in SALOMEDS::SObject theSObj);
-01343 
-01344     boolean isSavedInStudy();
-01345     
-01350     void setAnimationMode(in AnimationMode theMode);
-01351 
-01355     AnimationMode getAnimationMode();
-01356 
-01366     void ApplyProperties(in long theFieldNum, in ColoredPrs3d thePrs);
-01367   };
-01368 
-01375   interface Result : RemovableObject, SALOME::GenericObj {
-01378     boolean BuildAll();
-01379 
-01381     boolean Build(in boolean theIsBuildAll, in boolean theIsAtOnce);
-01382 
-01384     boolean IsDone();
-01385 
-01387     boolean IsEntitiesDone();
-01388 
-01390     void SetBuildFields(in boolean theIsBuildFields, in boolean theIsCalculateMinMax);
-01391 
-01393     boolean IsFieldsDone();
-01394 
-01396     void SetBuildGroups(in boolean theIsBuildGroups);
+01323     long getSpeed();
+01324 
+01329     boolean isProportional();
+01330 
+01339     void setAnimationRange(in double theMin, in double theMax);
+01340 
+01343     double getMinRange();
+01344 
+01347     double getMaxRange();
+01348 
+01353     boolean isRangeDefined();
+01354 
+01359     void dumpTo(in string thePath);
+01360 
+01368     string setDumpFormat(in string theFormat);
+01369 
+01372     boolean isCycling();
+01373 
+01377     double getMinTime();
+01378 
+01382     double getMaxTime();
+01383 
+01389     void setProportional(in boolean theProp);
+01390 
+01396     void setCycling(in boolean theCycle);
 01397 
-01399     boolean IsGroupsDone();
+01398     boolean isCleaningMemoryAtEachFrame();
+01399     void setCleaningMemoryAtEachFrame(in boolean theCycle);
 01400 
-01402     boolean IsMinMaxDone();
-01403   };
+01401     SALOMEDS::SObject publishInStudy();
+01402 
+01403     void saveAnimation();
 01404 
-01405   //-------------------------------------------------------
-01406   interface ViewManager;
-01407   interface View3D;
-01408 
-01415   interface VISU_Gen : Engines::Component, SALOMEDS::Driver, Base {
-01418     void SetCurrentStudy(in SALOMEDS::Study theStudy);
+01405     void restoreFromStudy(in SALOMEDS::SObject theSObj);
+01406 
+01407     boolean isSavedInStudy();
+01408     
+01413     void setAnimationMode(in AnimationMode theMode);
+01414 
+01418     AnimationMode getAnimationMode();
 01419 
-01422     SALOMEDS::Study GetCurrentStudy();
-01423 
-01428     ViewManager GetViewManager();
-01429 
-01433     SALOMEDS::SObject ImportTables(in string theFileName);
-01434 
-01438     boolean ExportTableToFile(in SALOMEDS::SObject theTable, in string theFileName);
-01439 
-01445     Result ImportFile(in string theFileName);
-01446 
-01452     Result CreateResult(in string theFileName);
-01453 
-01459     Result CopyAndImportFile(in string theFileName);
+01429     void ApplyProperties(in long theFieldNum, in ColoredPrs3d thePrs);
+01430   };
+01431 
+01438   interface Result : RemovableObject, SALOME::GenericObj {
+01441     boolean BuildAll();
+01442 
+01444     boolean Build(in boolean theIsBuildAll, in boolean theIsAtOnce);
+01445 
+01447     boolean IsDone();
+01448 
+01450     boolean IsEntitiesDone();
+01451 
+01453     void SetBuildFields(in boolean theIsBuildFields, in boolean theIsCalculateMinMax);
+01454 
+01456     boolean IsFieldsDone();
+01457 
+01459     void SetBuildGroups(in boolean theIsBuildGroups);
 01460 
-01464     Result ImportMed(in SALOMEDS::SObject theMedSObject);
-01465 
-01469     Result ImportMedField(in SALOME_MED::FIELD theField);
-01470 
-01479     void RenameEntityInStudy(in Result theResult,
-01480                     in string theMeshName,
-01481                     in Entity theEntity,
-01482                     in string theNewName);
-01483     void RenameFamilyInStudy(in Result theResult,
-01484                     in string theMeshName,
-01485                     in Entity theEntity,
-01486                     in string theSubMeshName,
-01487                     in string theNewName);
-01488     void RenameGroupInStudy(in Result theResult,
-01489                    in string theMeshName,
-01490                    in string theSubMeshName,
-01491                    in string theNewName);
+01462     boolean IsGroupsDone();
+01463 
+01465     boolean IsMinMaxDone();
+01466   };
+01467 
+01468   //-------------------------------------------------------
+01469   interface ViewManager;
+01470   interface View3D;
+01471 
+01478   interface VISU_Gen : Engines::Component, SALOMEDS::Driver, Base {
+01481     void SetCurrentStudy(in SALOMEDS::Study theStudy);
+01482 
+01485     SALOMEDS::Study GetCurrentStudy();
+01486 
+01491     ViewManager GetViewManager();
 01492 
-01499     Mesh MeshOnEntity(in Result theResult, in string theMeshName, in Entity theEntity);
-01500 
-01508     Mesh FamilyMeshOnEntity(in Result theResult, in string theMeshName,
-01509                    in Entity theEntity, in string theFamilyName);
-01510 
-01517     Mesh GroupMesh(in Result theResult, in string theMeshName, in string theGroupName);
-01518 
-01527     ScalarMap ScalarMapOnField(in Result theResult, in string theMeshName,
-01528                       in Entity theEntity, in string theFieldName,
-01529                       in double theIteration);
-01530 
-01539     GaussPoints GaussPointsOnField(in Result theResult, in string theMeshName,
-01540                        in Entity theEntity, in string theFieldName,
-01541                        in double theIteration);
-01542 
-01551     DeformedShape DeformedShapeOnField(in Result theResult, in string theMeshName,
-01552                            in Entity theEntity, in string theFieldName,
-01553                            in double theIteration);
-01554 
-01563     ScalarMapOnDeformedShape ScalarMapOnDeformedShapeOnField(in Result theResult, in string theMeshName,
-01564                                         in Entity theEntity, in string theFieldName,
-01565                                         in double theIteration);
-01566 
-01575     Vectors VectorsOnField(in Result theResult, in string theMeshName,
-01576                   in Entity theEntity, in string theFieldName,
-01577                   in double theIteration);
-01578 
-01587     IsoSurfaces IsoSurfacesOnField(in Result theResult, in string theMeshName,
-01588                        in Entity theEntity, in string theFieldName,
-01589                        in double theIteration);
-01590 
-01599     StreamLines StreamLinesOnField(in Result theResult, in string theMeshName,
-01600                        in Entity theEntity, in string theFieldName,
-01601                        in double theIteration);
-01602 
-01611     CutPlanes CutPlanesOnField(in Result theResult, in string theMeshName,
-01612                       in Entity theEntity, in string theFieldName,
-01613                       in double theIteration);
-01614 
-01623     CutLines CutLinesOnField(in Result theResult, in string theMeshName,
-01624                     in Entity theEntity, in string theFieldName,
-01625                     in double theIteration);
-01626 
-01635     Plot3D Plot3DOnField(in Result theResult, in string theMeshName,
-01636                 in Entity theEntity, in string theFieldName,
-01637                 in double theIteration);
-01638 
-01643     Table CreateTable(in string theTableEntry);
-01644 
-01651     Curve CreateCurve(in Table theTable, in long theHRow, in long theVRow);
-01652     
-01661     Curve CreateCurveWithZ( in Table theTable, in long theHRow, in long theVRow, in long theZRow );
-01662 
-01666     Container CreateContainer();
-01667 
-01671     Animation CreateAnimation(in View3D theView3d);
-01672 
-01673     void DeleteResult(in Result theResult);
-01674 
-01675     void DeletePrs3d(in Prs3d thePrs3d);
-01676   };
+01496     SALOMEDS::SObject ImportTables(in string theFileName);
+01497 
+01501     boolean ExportTableToFile(in SALOMEDS::SObject theTable, in string theFileName);
+01502 
+01508     Result ImportFile(in string theFileName);
+01509 
+01515     Result CreateResult(in string theFileName);
+01516 
+01522     Result CopyAndImportFile(in string theFileName);
+01523 
+01527     Result ImportMed(in SALOMEDS::SObject theMedSObject);
+01528 
+01532     Result ImportMedField(in SALOME_MED::FIELD theField);
+01533 
+01542     void RenameEntityInStudy(in Result theResult,
+01543                     in string theMeshName,
+01544                     in Entity theEntity,
+01545                     in string theNewName);
+01546     void RenameFamilyInStudy(in Result theResult,
+01547                     in string theMeshName,
+01548                     in Entity theEntity,
+01549                     in string theSubMeshName,
+01550                     in string theNewName);
+01551     void RenameGroupInStudy(in Result theResult,
+01552                    in string theMeshName,
+01553                    in string theSubMeshName,
+01554                    in string theNewName);
+01555 
+01562     Mesh MeshOnEntity(in Result theResult, in string theMeshName, in Entity theEntity);
+01563 
+01571     Mesh FamilyMeshOnEntity(in Result theResult, in string theMeshName,
+01572                    in Entity theEntity, in string theFamilyName);
+01573 
+01580     Mesh GroupMesh(in Result theResult, in string theMeshName, in string theGroupName);
+01581 
+01590     ScalarMap ScalarMapOnField(in Result theResult, in string theMeshName,
+01591                       in Entity theEntity, in string theFieldName,
+01592                       in double theIteration);
+01593 
+01602     GaussPoints GaussPointsOnField(in Result theResult, in string theMeshName,
+01603                        in Entity theEntity, in string theFieldName,
+01604                        in double theIteration);
+01605 
+01614     DeformedShape DeformedShapeOnField(in Result theResult, in string theMeshName,
+01615                            in Entity theEntity, in string theFieldName,
+01616                            in double theIteration);
+01617 
+01626     ScalarMapOnDeformedShape ScalarMapOnDeformedShapeOnField(in Result theResult, in string theMeshName,
+01627                                         in Entity theEntity, in string theFieldName,
+01628                                         in double theIteration);
+01629 
+01638     Vectors VectorsOnField(in Result theResult, in string theMeshName,
+01639                   in Entity theEntity, in string theFieldName,
+01640                   in double theIteration);
+01641 
+01650     IsoSurfaces IsoSurfacesOnField(in Result theResult, in string theMeshName,
+01651                        in Entity theEntity, in string theFieldName,
+01652                        in double theIteration);
+01653 
+01662     StreamLines StreamLinesOnField(in Result theResult, in string theMeshName,
+01663                        in Entity theEntity, in string theFieldName,
+01664                        in double theIteration);
+01665 
+01674     CutPlanes CutPlanesOnField(in Result theResult, in string theMeshName,
+01675                       in Entity theEntity, in string theFieldName,
+01676                       in double theIteration);
 01677 
-01684   interface View: Base {
-01685 
-01690     enum ViewRepresentation {
-01691       OBJECTBROWSER,
-01692       VIEWER,
-01693       PYTHON,
-01694       MESSAGES
-01695     };
-01696 
-01697     void ShowPart (in ViewRepresentation ViewRepr, in boolean state );
-01698 
-01699     boolean IsPartShown( in ViewRepresentation ViewRepr );
-01700 
-01710     void SplitRight();
-01711 
-01717     void SplitLeft();
-01718 
-01724     void SplitBottom();
+01686     CutLines CutLinesOnField(in Result theResult, in string theMeshName,
+01687                     in Entity theEntity, in string theFieldName,
+01688                     in double theIteration);
+01689 
+01698     Plot3D Plot3DOnField(in Result theResult, in string theMeshName,
+01699                 in Entity theEntity, in string theFieldName,
+01700                 in double theIteration);
+01701 
+01706     Table CreateTable(in string theTableEntry);
+01707 
+01714     Curve CreateCurve(in Table theTable, in long theHRow, in long theVRow);
+01715     
+01724     Curve CreateCurveWithZ( in Table theTable, in long theHRow, in long theVRow, in long theZRow );
 01725 
-01731     void SplitTop();
-01732 
-01736     void OnTop();
+01729     Container CreateContainer();
+01730 
+01734     Animation CreateAnimation(in View3D theView3d);
+01735 
+01736     void DeleteResult(in Result theResult);
 01737 
-01744     void Attract (in View theView);
-01745 
-01752     void AttractAll (in View theView);
-01753 
-01761     void SetRelativePositionInSplitter (in double thePosition);
-01762 
-01770     void SetRelativeSizeInSplitter (in double theSize);
-01771 
-01777     void SetRelativePositionX (in double thePosition);
-01778 
-01784     void SetRelativePositionY (in double thePosition);
-01785 
-01791     void SetRelativeSizeX (in double theSize);
-01792 
-01798     void SetRelativeSizeY (in double theSize);
-01799 
-01803     void SetViewWidth (in long Width); //setting width of view
-01804     void SetViewHeight (in long Height); //setting height of view
-01805     long GetViewWidth(); //getting view width
-01806     long GetViewHeight(); //getting view height
-01807     enum ViewPosition {TOP, CENTER, BOTTOM, RIGHT, LEFT}; //position of the study frame
-01808     void SetViewPositionHorizontal (in ViewPosition ViewPosHor); //setting of the horizontal view position
-01809     void SetViewPositionVertical (in ViewPosition ViewPosVer); //setting of the vertical view position
-01810     void SetRelativePosition( in double x, in double y );
-01811     void SetRelativeSize( in double x, in double y );
-01812     void Minimize(); // Minimizes to the task bar or to the bottom of the Desktop the %View frame.
-01813     void Restore(); // Restores the %View frame.
-01814     void Maximize(); // Maximizes the %View frame.
-01815 
-01820     void SetTitle(in string theTitle);
-01821 
-01825     string GetTitle();
-01826 
-01831     void SetBackground(in SALOMEDS::Color theColor);
-01832 
-01836     SALOMEDS::Color GetBackground();
-01837 
-01841     void EraseAll();
-01842 
-01846     void DisplayAll();
-01847 
-01852     void Erase(in PrsObject thePrsObj);
-01853 
-01858     void Display(in PrsObject thePrsObj);
-01859 
-01865     void DisplayOnly(in PrsObject thePrsObj);
-01866 
-01870     void Update();
-01871 
-01877     boolean SavePicture(in string theFileName);
-01878   };
-01879 
-01880   //-------------------------------------------------------
-01885   interface View3D : View {
-01890     enum ViewType{ FRONT, BACK, LEFT, RIGHT, TOP, BOTTOM};
-01891 
-01895     enum Axis{ XAxis, YAxis, ZAxis};
-01896 
-01900     typedef double XYZ[3];
-01901 
-01905     void FitAll();
-01906 
-01911     void SetView(in ViewType theType);
-01912 
-01918     void SetPointOfView(in XYZ theCoord);
-01919 
-01925     XYZ GetPointOfView();
-01926 
-01930     void SetViewUp(in XYZ theDir);
-01931 
-01935     XYZ GetViewUp();
-01936 
-01941     void SetFocalPoint(in XYZ theDir);
+01738     void DeletePrs3d(in Prs3d thePrs3d);
+01739   };
+01740 
+01747   interface View: Base {
+01748 
+01753     enum ViewRepresentation {
+01754       OBJECTBROWSER,
+01755       VIEWER,
+01756       PYTHON,
+01757       MESSAGES
+01758     };
+01759 
+01760     void ShowPart (in ViewRepresentation ViewRepr, in boolean state );
+01761 
+01762     boolean IsPartShown( in ViewRepresentation ViewRepr );
+01763 
+01773     void SplitRight();
+01774 
+01780     void SplitLeft();
+01781 
+01787     void SplitBottom();
+01788 
+01794     void SplitTop();
+01795 
+01799     void OnTop();
+01800 
+01807     void Attract (in View theView);
+01808 
+01815     void AttractAll (in View theView);
+01816 
+01824     void SetRelativePositionInSplitter (in double thePosition);
+01825 
+01833     void SetRelativeSizeInSplitter (in double theSize);
+01834 
+01840     void SetRelativePositionX (in double thePosition);
+01841 
+01847     void SetRelativePositionY (in double thePosition);
+01848 
+01854     void SetRelativeSizeX (in double theSize);
+01855 
+01861     void SetRelativeSizeY (in double theSize);
+01862 
+01866     void SetViewWidth (in long Width); //setting width of view
+01867     void SetViewHeight (in long Height); //setting height of view
+01868     long GetViewWidth(); //getting view width
+01869     long GetViewHeight(); //getting view height
+01870     enum ViewPosition {TOP, CENTER, BOTTOM, RIGHT, LEFT}; //position of the study frame
+01871     void SetViewPositionHorizontal (in ViewPosition ViewPosHor); //setting of the horizontal view position
+01872     void SetViewPositionVertical (in ViewPosition ViewPosVer); //setting of the vertical view position
+01873     void SetRelativePosition( in double x, in double y );
+01874     void SetRelativeSize( in double x, in double y );
+01875     void Minimize(); // Minimizes to the task bar or to the bottom of the Desktop the %View frame.
+01876     void Restore(); // Restores the %View frame.
+01877     void Maximize(); // Maximizes the %View frame.
+01878 
+01883     void SetTitle(in string theTitle);
+01884 
+01888     string GetTitle();
+01889 
+01894     void SetBackground(in SALOMEDS::Color theColor);
+01895 
+01899     SALOMEDS::Color GetBackground();
+01900 
+01904     void EraseAll();
+01905 
+01909     void DisplayAll();
+01910 
+01915     void Erase(in PrsObject thePrsObj);
+01916 
+01921     void Display(in PrsObject thePrsObj);
+01922 
+01928     void DisplayOnly(in PrsObject thePrsObj);
+01929 
+01933     void Update();
+01934 
+01940     boolean SavePicture(in string theFileName);
+01941   };
 01942 
-01947     XYZ GetFocalPoint();
-01948 
-01952     void SetParallelScale(in double theScale);
-01953 
-01957     double GetParallelScale();
-01958 
-01964     void ScaleView(in Axis theAxis, in double theParam);
-01965 
-01969     void RemoveScale();
-01970 
-01976     boolean SaveViewParams(in string theName);
-01977 
-01983     boolean RestoreViewParams(in string theName);
-01984 
-01985 
-01990     PresentationType GetPresentationType(in ScalarMap thePrs);
-01991 
-01997     string SetPresentationType(in ScalarMap thePrs, in PresentationType thePrsType);
-01998 
-02003     boolean IsShrinked(in ScalarMap thePrs);
-02004 
-02010     string SetShrinked(in ScalarMap thePrs, in boolean isShrinked);
+01943   //-------------------------------------------------------
+01948   interface View3D : View {
+01953     enum ViewType{ FRONT, BACK, LEFT, RIGHT, TOP, BOTTOM};
+01954 
+01958     enum Axis{ XAxis, YAxis, ZAxis};
+01959 
+01963     typedef double XYZ[3];
+01964 
+01968     void FitAll();
+01969 
+01974     void SetView(in ViewType theType);
+01975 
+01981     void SetPointOfView(in XYZ theCoord);
+01982 
+01988     XYZ GetPointOfView();
+01989 
+01993     void SetViewUp(in XYZ theDir);
+01994 
+01998     XYZ GetViewUp();
+01999 
+02004     void SetFocalPoint(in XYZ theDir);
+02005 
+02010     XYZ GetFocalPoint();
 02011 
-02016     boolean IsShaded(in ScalarMap thePrs);
-02017 
-02023     string SetShaded(in ScalarMap thePrs, in boolean isShaded);
-02024 
-02029     double GetOpacity(in ScalarMap thePrs);
-02030 
-02036     string SetOpacity(in ScalarMap thePrs, in double theOpacity);
-02037 
-02042     double GetLineWidth(in ScalarMap thePrs);
-02043 
-02049     string SetLineWidth(in ScalarMap thePrs, in double theLineWidth);
-02050   };
-02051 
-02052   //-------------------------------------------------------
-02057   interface TableView : View {
-02058   };
-02059 
-02060   //-------------------------------------------------------
-02066   interface XYPlot : View {
-02070     void SetSubTitle(in string theTitle);
-02071 
-02074     string GetSubTitle();
-02075 
-02080     enum CurveType { POINTS, MULTYLINE, SPLINE};
-02081 
-02085     void SetCurveType(in CurveType theType);
-02086 
-02089     CurveType GetCurveType();
-02090 
-02095     void SetMarkerSize(in long theSize);
-02096 
-02100     long GetMarkerSize();
-02101 
-02104     void EnableXGrid(in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor);
-02105 
-02108     void EnableYGrid(in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor);
-02109 
-02113     void SetHorScaling(in Scaling theScaling);
+02015     void SetParallelScale(in double theScale);
+02016 
+02020     double GetParallelScale();
+02021 
+02027     void ScaleView(in Axis theAxis, in double theParam);
+02028 
+02032     void RemoveScale();
+02033 
+02039     boolean SaveViewParams(in string theName);
+02040 
+02046     boolean RestoreViewParams(in string theName);
+02047 
+02048 
+02053     PresentationType GetPresentationType(in ScalarMap thePrs);
+02054 
+02060     string SetPresentationType(in ScalarMap thePrs, in PresentationType thePrsType);
+02061 
+02066     boolean IsShrinked(in ScalarMap thePrs);
+02067 
+02073     string SetShrinked(in ScalarMap thePrs, in boolean isShrinked);
+02074 
+02079     boolean IsShaded(in ScalarMap thePrs);
+02080 
+02086     string SetShaded(in ScalarMap thePrs, in boolean isShaded);
+02087 
+02092     double GetOpacity(in ScalarMap thePrs);
+02093 
+02099     string SetOpacity(in ScalarMap thePrs, in double theOpacity);
+02100 
+02105     double GetLineWidth(in ScalarMap thePrs);
+02106 
+02112     string SetLineWidth(in ScalarMap thePrs, in double theLineWidth);
+02113   };
 02114 
-02117     Scaling GetHorScaling();
-02118 
-02122     void SetVerScaling(in Scaling theScaling);
-02123 
-02126     Scaling GetVerScaling();
-02127 
-02131     void SetXTitle(in string theTitle);
-02132 
-02135     string GetXTitle();
-02136 
-02140     void SetYTitle(in string theTitle);
-02141 
-02144     string GetYTitle();
-02145 
-02148     void ShowLegend(in boolean theShowing);
+02115   //-------------------------------------------------------
+02120   interface TableView : View {
+02121   };
+02122 
+02123   //-------------------------------------------------------
+02129   interface XYPlot : View {
+02133     void SetSubTitle(in string theTitle);
+02134 
+02137     string GetSubTitle();
+02138 
+02143     enum CurveType { POINTS, MULTYLINE, SPLINE};
+02144 
+02148     void SetCurveType(in CurveType theType);
 02149 
-02152     void FitAll();
+02152     CurveType GetCurveType();
 02153 
-02156     void FitXRange(in double xMin, in double xMax);
-02157 
-02160     void FitYRange(in double yMin, in double yMax);
-02161 
-02164     void FitRange(in double xMin, in double xMax,
-02165             in double yMin, in double yMax);
-02166 
-02167     void GetFitRanges(out double xMin,out double xMax,
-02168                 out double yMin,out double yMax);
-02169   };
-02170 
-02171   //-------------------------------------------------------
-02176   interface ViewManager: Base {
-02183     View GetCurrentView();
-02184 
-02189     View3D Create3DView();
+02158     void SetMarkerSize(in long theSize);
+02159 
+02163     long GetMarkerSize();
+02164 
+02167     void EnableXGrid(in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor);
+02168 
+02171     void EnableYGrid(in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor);
+02172 
+02176     void SetHorScaling(in Scaling theScaling);
+02177 
+02180     Scaling GetHorScaling();
+02181 
+02185     void SetVerScaling(in Scaling theScaling);
+02186 
+02189     Scaling GetVerScaling();
 02190 
-02195     TableView CreateTableView(in Table theTable);
-02196 
-02201     XYPlot CreateXYPlot();
-02202 
-02206     void Destroy(in View theView);
-02207   };
-02208 };
-02209 
-02210 #endif
+02194     void SetXTitle(in string theTitle);
+02195 
+02198     string GetXTitle();
+02199 
+02203     void SetYTitle(in string theTitle);
+02204 
+02207     string GetYTitle();
+02208 
+02211     void ShowLegend(in boolean theShowing);
+02212 
+02215     void FitAll();
+02216 
+02219     void FitXRange(in double xMin, in double xMax);
+02220 
+02223     void FitYRange(in double yMin, in double yMax);
+02224 
+02227     void FitRange(in double xMin, in double xMax,
+02228             in double yMin, in double yMax);
+02229 
+02230     void GetFitRanges(out double xMin,out double xMax,
+02231                 out double yMin,out double yMax);
+02232   };
+02233 
+02234   //-------------------------------------------------------
+02239   interface ViewManager: Base {
+02246     View GetCurrentView();
+02247 
+02252     View3D Create3DView();
+02253 
+02258     TableView CreateTableView(in Table theTable);
+02259 
+02264     XYPlot CreateXYPlot();
+02265 
+02269     void Destroy(in View theView);
+02270   };
+02271 };
+02272 
+02273 #endif
 
+Generated on Wed Jun 20 03:21:51 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html index 14b7a98d..06e11056 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html +++ b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html @@ -21,9 +21,7 @@

Include dependency graph for VISU_Gen.idl:

- -

-Go to the source code of this file. +
@@ -110,7 +108,9 @@ Include dependency graph for VISU_Gen.idl:

 
- + + + @@ -178,6 +179,6 @@ Include dependency graph for VISU_Gen.idl:

Detailed Description

This file conatins a set of interfaces of the VISU module. This module provides various forms of data visualization in SALOME application. These forms include data tables, XY plots, 3d representations and combination of these forms. +Generated on Wed Jun 20 12:35:55 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html index 1f16a54a..ce1428dd 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html @@ -17,7 +17,7 @@

VISU.Animation Interface Reference

Animation class More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Animation:

Inheritance graph
@@ -69,9 +69,9 @@ Inheritance diagram for VISU.Animation:

boolean 
- + - + @@ -941,7 +941,7 @@ Returns True if the range of the animation has been defined by the method se - + @@ -972,9 +972,9 @@ Saves all the frames composing the animation into a definite directory. Pictures

Namespaces

namespace  VISU
Interface of the ViewManager. More...

Typedefs

typedef string VISU.IdType
typedef string VISU.IdType
typedef sequence< string > VISU.string_array

Enumerations

enum  VISU.Scaling { VISU.LINEAR, @@ -136,30 +136,31 @@ Include dependency graph for VISU_Gen.idl:

VISU.TSCALARMAPONDEFORMEDSHAPE, VISU.TGAUSSPOINTS, +VISU.TPRSMERGER, VISU.TPLOT3D, -VISU.TCUTPLANES,
-  VISU.TCUTLINES, +  VISU.TCUTPLANES, +VISU.TCUTLINES, VISU.TVECTORS, VISU.TSTREAMLINES, -VISU.TVISUGEN,
-  VISU.TVIEWMANAGER, +  VISU.TVISUGEN, +VISU.TVIEWMANAGER, VISU.TRESULT, VISU.TXYPLOT, -VISU.TTABLEVIEW,
-  VISU.TVIEW3D, +  VISU.TTABLEVIEW, +VISU.TVIEW3D, VISU.TGAUSSVIEW, VISU.TENTITY, -VISU.TFAMILY,
-  VISU.TGROUP, +  VISU.TFAMILY, +VISU.TGROUP, VISU.TFIELD, VISU.TTIMESTAMP, -VISU.TANIMATION,
-  VISU.TALL +  VISU.TANIMATION, +VISU.TALL
}
isRangeDefined ()
void dumpTo (in string thePath)
void dumpTo (in string thePath)
string setDumpFormat (in string theFormat)
string setDumpFormat (in string theFormat)
boolean isCycling ()
void VISU.Animation.dumpTo in string in string  thePath  )  - + - + @@ -1407,7 +1407,7 @@ Gets the animation mode. +Apply the presentation properties to all fields. The exception is raised in the following cases: 1) presentations for the given field is not yet created; 2) invalid dynamic cast of the given presentation to VISU.ColoredPrs3d_i; 3) the MED file is not the same; 4) the mesh name is not the same; 5) the field name is not the same; 6) the entity is not the same.
string VISU.Animation.setDumpFormat string VISU.Animation.setDumpFormat in string in string  theFormat  ) 

-Apply the presentation properties to all fields. The exception is raised in the following cases: 1) presentations for the given field is not yet created; 2) invalid dynamic cast of the given presentation to VISU.ColoredPrs3d_i; 3) the MED file is not the same; 4) the mesh name is not the same; 5) the field name is not the same; 6) the entity is not the same.

@@ -1466,6 +1466,6 @@ Returns the type of the presentable object

+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html index 81bd3902..2cc77607 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html @@ -14,7 +14,7 @@ -

VISU.Base Interface Reference

import "VISU_Gen.idl"; +

VISU.Base Interface Reference

import "VISU_Gen.idl";

Inheritance diagram for VISU.Base:

Inheritance graph
@@ -110,6 +110,6 @@ Returns the type of the presentable object +Generated on Wed Jun 20 12:35:55 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html index 0e7a574f..f596a048 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html @@ -17,7 +17,7 @@

VISU.ColoredPrs3d Interface Reference

Basic Interface for the Colored 3D Presentations. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.ColoredPrs3d:

Inheritance graph
@@ -70,9 +70,9 @@ Inheritance diagram for VISU.ColoredPrs3d:

long GetLabels () -void SetTitle (in string theName) +void SetTitle (in string theName) -string GetTitle () +string GetTitle () void SetOffset (in float theDx, in float theDy, in float theDz) @@ -524,7 +524,7 @@ Gets the number of labels which will be used for indication of color gradation o void VISU.ColoredPrs3d.SetTitle (  - in string  + in string  theName  )  @@ -555,7 +555,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + @@ -745,6 +745,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html index a4e7c307..83e37112 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html @@ -17,7 +17,7 @@

VISU.Container Interface Reference

Container presentable object interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Container:

Inheritance graph
@@ -251,6 +251,6 @@ Returns the type of the presentable object +Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html index 172b84da..8707e58d 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html @@ -17,7 +17,7 @@

VISU.Curve Interface Reference

Interface of curve representation. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Curve:

Inheritance graph
@@ -56,9 +56,9 @@ Inheritance diagram for VISU.Curve:


Public Member Functions

-void SetTitle (in string theTitle) +void SetTitle (in string theTitle) -string GetTitle () +string GetTitle () void SetColor (in SALOMEDS::Color theColor) @@ -180,7 +180,7 @@ This enumeration contains a set of elements defining the type of presentation of void VISU.Curve.SetTitle (  - in string  + in string  theTitle  )  @@ -211,7 +211,7 @@ Sets the title of the curve.
Parameters:
- + @@ -537,6 +537,6 @@ Returns the type of the presentable object
string VISU.Curve.GetTitle string VISU.Curve.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html index e5e052d4..8b4b1210 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html @@ -17,7 +17,7 @@

VISU.CutLines Interface Reference

Cut lines presentation. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.CutLines:

Inheritance graph
@@ -95,9 +95,17 @@ Inheritance diagram for VISU.CutLines:

void SetRange (in double theMin, in double theMax) -void SetBarOrientation (in Orientation theOrientation) +void SetBarOrientation (in Orientation theOrientation) -Orientation GetBarOrientation () +Orientation GetBarOrientation () + +void SetMeshOnGroup (in string theMeshName, in string theGroupName) + +long AddMeshOnGroup (in string theMeshName, in string theGroupName) + +void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum) + +void RemoveAllGeom () void SetScalarMode (in long theScalarMode) @@ -129,9 +137,9 @@ Inheritance diagram for VISU.CutLines:

long GetLabels () -void SetTitle (in string theName) +void SetTitle (in string theName) -string GetTitle () +string GetTitle () void SetOffset (in float theDx, in float theDy, in float theDz) @@ -1152,7 +1160,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit - + @@ -1173,6 +1181,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -1608,7 +1786,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -1639,7 +1817,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i + + + + + + + + @@ -102,9 +110,9 @@ Inheritance diagram for VISU.CutPlanes:

long 
- + - + @@ -709,6 +717,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1829,6 +2007,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html index eabf4827..bce27018 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html @@ -17,7 +17,7 @@

VISU.CutPlanes Interface Reference

Cut planes interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.CutPlanes:

Inheritance graph
@@ -72,6 +72,14 @@ Inheritance diagram for VISU.CutPlanes:

Orientation 
GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -1144,7 +1322,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -1175,7 +1353,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + + + + + + + + + @@ -91,9 +99,9 @@ Inheritance diagram for VISU.DeformedShape:

long 
- + - + @@ -467,7 +475,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1365,6 +1543,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html index 20b397cd..69c32cd8 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html @@ -17,7 +17,7 @@

VISU.DeformedShape Interface Reference

Deformed shape presentation interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.DeformedShape:

Inheritance graph
@@ -57,9 +57,17 @@ Inheritance diagram for VISU.DeformedShape:

void 
SetRange (in double theMin, in double theMax)
void SetBarOrientation (in Orientation theOrientation)
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
Orientation GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
- + @@ -488,6 +496,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -923,7 +1101,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -954,7 +1132,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + @@ -515,7 +515,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -546,7 +546,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + + + + + + + + + @@ -81,9 +89,9 @@ Inheritance diagram for VISU.IsoSurfaces:

long 
- + - + @@ -337,7 +345,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit + + + + + + + + @@ -104,9 +112,9 @@ Inheritance diagram for VISU.Plot3D:

long 
- + - + @@ -730,6 +738,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1144,6 +1322,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html index a3b5c4a1..abe7bda5 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html @@ -17,7 +17,7 @@

VISU.GaussPoints Interface Reference

Gauss Points presentation interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.GaussPoints:

Inheritance graph
@@ -61,9 +61,9 @@ Inheritance diagram for VISU.GaussPoints:

long 
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -736,6 +736,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html index b0ae625c..2289dc1e 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html @@ -17,7 +17,7 @@

VISU.IsoSurfaces Interface Reference

Interface of the isometric surface presentation. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.IsoSurfaces:

Inheritance graph
@@ -47,9 +47,17 @@ Inheritance diagram for VISU.IsoSurfaces:

void 
SetRange (in double theMin, in double theMax)
void SetBarOrientation (in Orientation theOrientation)
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
Orientation GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
- + @@ -358,6 +366,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -793,7 +971,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -824,7 +1002,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1014,6 +1192,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html index aacf8d8f..af2b2aae 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html @@ -17,7 +17,7 @@

VISU.Mesh Interface Reference

Interface of the mesh. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Mesh:

Inheritance graph
@@ -471,6 +471,6 @@ Returns the type of the presentable object

+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html index bfbd1426..923b1028 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html @@ -17,7 +17,7 @@

VISU.Plot3D Interface Reference

Plot3D interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Plot3D:

Inheritance graph
@@ -74,6 +74,14 @@ Inheritance diagram for VISU.Plot3D:

Orientation 
GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -1165,7 +1343,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -1196,7 +1374,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1386,6 +1564,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html index 1b5ddef5..ed74bf89 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html @@ -17,7 +17,7 @@

VISU.Prs3d Interface Reference

3D presentation interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Prs3d:

Inheritance graph
@@ -225,6 +225,6 @@ Returns the type of the presentable object

+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html index 8c56ee4f..184902c5 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html @@ -17,7 +17,7 @@

VISU.PrsObject Interface Reference

Presentable object interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.PrsObject:

Inheritance graph
@@ -137,6 +137,6 @@ Returns the type of the presentable object

+Generated on Wed Jun 20 12:35:55 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html index 85775287..6b273c69 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html @@ -17,7 +17,7 @@

VISU.RemovableObject Interface Reference

Removable object interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.RemovableObject:

Inheritance graph
@@ -138,6 +138,6 @@ Returns the type of the presentable object +Generated on Wed Jun 20 12:35:55 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html index 0991db36..28168aab 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html @@ -17,7 +17,7 @@

VISU.Result Interface Reference

Interface Result. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Result:

Inheritance graph
@@ -54,7 +54,7 @@ Inheritance diagram for VISU.Result:

Detailed Description

-This interface serves for inner representation of data generated in other sources (MED object or file). This data is needed for further construction of graphical presentations. +This interface serves for inner representation of data generated in other sources (MED object or file). This data is needed for further construction of graphical presentations.


Member Function Documentation

@@ -118,7 +118,7 @@ Reads all data from the corresponding sources. By default the data is loaded on

-Start to parse the source MED file and publish all its entities into the study +Start to parse the source MED file and publish all its entities into the study

@@ -145,7 +145,7 @@ Start to parse the source MED file an

-Allow to check is all requested MED entites already loaded or not +Allow to check is all requested MED entites already loaded or not

@@ -172,7 +172,7 @@ Allow to check is all requested MED e

-Allow to check is corresponding MED entites already loaded or not +Allow to check is corresponding MED entites already loaded or not

@@ -209,7 +209,7 @@ Allow to check is corresponding MED e

-Choose to parse MED fields and perform global min / max on the MED timestamps. +Choose to parse MED fields and perform global min / max on the MED timestamps.

@@ -236,7 +236,7 @@ Choose to parse MED fields and perfor

-Allow to check is corresponding MED fields already loaded or not +Allow to check is corresponding MED fields already loaded or not

@@ -264,7 +264,7 @@ Allow to check is corresponding MED f

-Choose to parse MED groups. +Choose to parse MED groups.

@@ -291,7 +291,7 @@ Choose to parse MED groups.

-Allow to check is corresponding MED groups and families already loaded or not +Allow to check is corresponding MED groups and families already loaded or not

@@ -404,6 +404,6 @@ Returns the type of the presentable object

+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html index d39fe6eb..8658e90e 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html @@ -17,7 +17,7 @@

VISU.ScalarMap Interface Reference

Interface of the Scalar Map. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.ScalarMap:

Inheritance graph
@@ -54,6 +54,14 @@ Inheritance diagram for VISU.ScalarMap:

Orientation GetBarOrientation () +void SetMeshOnGroup (in string theMeshName, in string theGroupName) + +long AddMeshOnGroup (in string theMeshName, in string theGroupName) + +void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum) + +void RemoveAllGeom () + void SetScalarMode (in long theScalarMode) long GetScalarMode () @@ -84,9 +92,9 @@ Inheritance diagram for VISU.ScalarMap:

long GetLabels () -void SetTitle (in string theName) +void SetTitle (in string theName) -string GetTitle () +string GetTitle () void SetOffset (in float theDx, in float theDy, in float theDz) @@ -300,6 +308,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility). +

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  ) 
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -735,7 +913,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -766,7 +944,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + + + + + + + + + @@ -55,9 +63,17 @@ Inheritance diagram for VISU.ScalarMapOnDeformedShape:

void 
- + + + + + + + + + - + @@ -89,9 +105,9 @@ Inheritance diagram for VISU.ScalarMapOnDeformedShape:

long 
- + - + @@ -301,13 +317,13 @@ Gets the scale of the presentatable object. - + - + @@ -350,6 +366,114 @@ Sets the scalar field
Parameters:
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -956,6 +1134,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html index 435b0bda..d5cbbae8 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html @@ -17,7 +17,7 @@

VISU.ScalarMapOnDeformedShape Interface Reference

Scalar Map on Deformed shape presentation interface. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.ScalarMapOnDeformedShape:

Inheritance graph
@@ -47,7 +47,15 @@ Inheritance diagram for VISU.ScalarMapOnDeformedShape:

double 
GetScale ()
void SetScalarField (in string theMeshName, in string theFieldName, in long theIteration, in Entity theEntity)
void SetScalarField (in string theMeshName, in string theFieldName, in long theIteration, in Entity theEntity)
long GetScalarLIteration ()
Entity GetScalarEEntity ()
string GetScalarCFieldName ()
string GetScalarCMeshName ()
void SetScaling (in Scaling theScaling)
SetRange (in double theMin, in double theMax)
void SetBarOrientation (in Orientation theOrientation)
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
Orientation GetBarOrientation ()
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void VISU.ScalarMapOnDeformedShape.SetScalarField in string in string  theMeshName,
in string in string  theFieldName,
+

+ + + + +
+ + + + + + + + +
long VISU.ScalarMapOnDeformedShape.GetScalarLIteration  ) 
+
+ + + + + +
+   + + +

+Get scalar iteration number

+

+ + + + +
+ + + + + + + + +
Entity VISU.ScalarMapOnDeformedShape.GetScalarEEntity  ) 
+
+ + + + + +
+   + + +

+Get scalar entity

+

+ + + + +
+ + + + + + + + +
string VISU.ScalarMapOnDeformedShape.GetScalarCFieldName  ) 
+
+ + + + + +
+   + + +

+Get scalar field name

+

+ + + + +
+ + + + + + + + +
string VISU.ScalarMapOnDeformedShape.GetScalarCMeshName  ) 
+
+ + + + + +
+   + + +

+Get mesh name

@@ -492,7 +616,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit - + - + @@ -715,8 +715,8 @@ Creates on the basis of a family a mesh which will be composed of geometrical el

Creates a mesh on the basis of a group of families.

Parameters:
- + @@ -513,6 +637,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -948,7 +1242,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -979,7 +1273,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + + + + + + + + + @@ -109,9 +117,9 @@ Inheritance diagram for VISU.StreamLines:

long 
- + - + @@ -758,7 +766,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit - + @@ -643,7 +643,7 @@ Creates a mesh on the basis of the data generated in other sources ( - + @@ -665,8 +665,8 @@ Creates a mesh on the basis of the data generated in other sources ( - - + +
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1169,6 +1463,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html index f66c65d3..65832298 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html @@ -17,7 +17,7 @@

VISU.StreamLines Interface Reference

Interface of the stream lines representation. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.StreamLines:

Inheritance graph
@@ -75,9 +75,17 @@ Inheritance diagram for VISU.StreamLines:

void 
SetRange (in double theMin, in double theMax)
void SetBarOrientation (in Orientation theOrientation)
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
Orientation GetBarOrientation ()
void SetMeshOnGroup (in string theMeshName, in string theGroupName)
long AddMeshOnGroup (in string theMeshName, in string theGroupName)
void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
GetLabels ()
void SetTitle (in string theName)
void SetTitle (in string theName)
string GetTitle ()
string GetTitle ()
void SetOffset (in float theDx, in float theDy, in float theDz)
- + @@ -779,6 +787,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -1214,7 +1392,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -1245,7 +1423,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + @@ -96,7 +96,7 @@ Vertical orientation of the table. - + @@ -127,7 +127,7 @@ Sets the title of the table.
Parameters:
- + - + @@ -101,9 +101,9 @@ Inheritance diagram for VISU.TableView:

void 
- + - + @@ -121,7 +121,7 @@ Inheritance diagram for VISU.TableView:

void 
- + @@ -998,7 +998,7 @@ Old methods for view parameters management, they don't work now - + @@ -1029,7 +1029,7 @@ Sets the title of the View frame.
Parameters:
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -193,7 +193,7 @@ Gets the View Manager which is used for creation of post-processing presentation - + @@ -227,7 +227,7 @@ Imports tables from a file and create TableAttribute in Sudy - + @@ -258,7 +258,7 @@ Export table to a file - + @@ -291,7 +291,7 @@ Imports data from a file. The access to this file will be conserved outside of t - + @@ -324,7 +324,7 @@ Create result and initialize its with the file. The access to this file will be - + @@ -419,7 +419,7 @@ Imports data from a MED field. - + @@ -431,7 +431,7 @@ Imports data from a MED field. - + @@ -453,8 +453,8 @@ Imports data from a MED field.

Rename a study object, representing a mesh, specified by given values.

Parameters:
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1435,6 +1613,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html index 25ebfe38..02d2aebb 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html @@ -17,7 +17,7 @@

VISU.Table Interface Reference

Table representation interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Table:

Inheritance graph
@@ -33,9 +33,9 @@ Inheritance diagram for VISU.Table:


Public Member Functions

void SetTitle (in string theTitle)
void SetTitle (in string theTitle)
string GetTitle ()
string GetTitle ()
void SetOrientation (in Orientation theOrientation)
void VISU.Table.SetTitle in string in string  theTitle  )  - + @@ -349,6 +349,6 @@ Returns the type of the presentable object
string VISU.Table.GetTitle string VISU.Table.GetTitle  ) 
+Generated on Wed Jun 20 12:35:55 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html index da2505fb..3fbeb748 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html @@ -17,7 +17,7 @@

VISU.TableView Interface Reference

Interface of the Table view. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.TableView:

Inheritance graph
@@ -91,9 +91,9 @@ Inheritance diagram for VISU.TableView:

void 
SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
Maximize ()
void SetTitle (in string theTitle)
void SetTitle (in string theTitle)
string GetTitle ()
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
Update ()
boolean SavePicture (in string theFileName)
boolean SavePicture (in string theFileName)
IdType GetID ()
void VISU.View.SetTitle in string in string  theTitle  )  [inherited] - + @@ -1298,7 +1298,7 @@ Updates the view. - + @@ -1380,6 +1380,6 @@ Returns the type of the presentable object
string VISU.View.GetTitle string VISU.View.GetTitle  ) 
boolean VISU.View.SavePicture in string in string  theFileName  )  [inherited]
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen.html index 1040447e..e412e5bc 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen.html @@ -17,7 +17,7 @@

VISU.VISU_Gen Interface Reference

VISU_Gen interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.VISU_Gen:

Inheritance graph
@@ -34,53 +34,53 @@ Inheritance diagram for VISU.VISU_Gen:

ViewManager 
GetViewManager ()
SALOMEDS::SObject ImportTables (in string theFileName)
SALOMEDS::SObject ImportTables (in string theFileName)
boolean ExportTableToFile (in SALOMEDS::SObject theTable, in string theFileName)
boolean ExportTableToFile (in SALOMEDS::SObject theTable, in string theFileName)
Result ImportFile (in string theFileName)
Result ImportFile (in string theFileName)
Result CreateResult (in string theFileName)
Result CreateResult (in string theFileName)
Result CopyAndImportFile (in string theFileName)
Result CopyAndImportFile (in string theFileName)
Result ImportMed (in SALOMEDS::SObject theMedSObject)
Result ImportMedField (in SALOME_MED::FIELD theField)
void RenameEntityInStudy (in Result theResult, in string theMeshName, in Entity theEntity, in string theNewName)
void RenameEntityInStudy (in Result theResult, in string theMeshName, in Entity theEntity, in string theNewName)
void RenameFamilyInStudy (in Result theResult, in string theMeshName, in Entity theEntity, in string theSubMeshName, in string theNewName)
void RenameFamilyInStudy (in Result theResult, in string theMeshName, in Entity theEntity, in string theSubMeshName, in string theNewName)
void RenameGroupInStudy (in Result theResult, in string theMeshName, in string theSubMeshName, in string theNewName)
void RenameGroupInStudy (in Result theResult, in string theMeshName, in string theSubMeshName, in string theNewName)
Mesh MeshOnEntity (in Result theResult, in string theMeshName, in Entity theEntity)
Mesh MeshOnEntity (in Result theResult, in string theMeshName, in Entity theEntity)
Mesh FamilyMeshOnEntity (in Result theResult, in string theMeshName, in Entity theEntity, in string theFamilyName)
Mesh FamilyMeshOnEntity (in Result theResult, in string theMeshName, in Entity theEntity, in string theFamilyName)
Mesh GroupMesh (in Result theResult, in string theMeshName, in string theGroupName)
Mesh GroupMesh (in Result theResult, in string theMeshName, in string theGroupName)
ScalarMap ScalarMapOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
ScalarMap ScalarMapOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
GaussPoints GaussPointsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
GaussPoints GaussPointsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
DeformedShape DeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
DeformedShape DeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
ScalarMapOnDeformedShape ScalarMapOnDeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
ScalarMapOnDeformedShape ScalarMapOnDeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
Vectors VectorsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
Vectors VectorsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
IsoSurfaces IsoSurfacesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
IsoSurfaces IsoSurfacesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
StreamLines StreamLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
StreamLines StreamLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
CutPlanes CutPlanesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
CutPlanes CutPlanesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
CutLines CutLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
CutLines CutLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
Plot3D Plot3DOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
Plot3D Plot3DOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration)
Table CreateTable (in string theTableEntry)
Table CreateTable (in string theTableEntry)
Curve CreateCurve (in Table theTable, in long theHRow, in long theVRow)
SALOMEDS::SObject VISU.VISU_Gen.ImportTables in string in string  theFileName  ) 
in string in string  theFileName
Result VISU.VISU_Gen.ImportFile in string in string  theFileName  ) 
Result VISU.VISU_Gen.CreateResult in string in string  theFileName  ) 
Result VISU.VISU_Gen.CopyAndImportFile in string in string  theFileName  ) 
in string in string  theMeshName,
in string in string  theNewName
- - + + @@ -477,7 +477,7 @@ Rename a study object, representing a mesh, specified by given values.
- + @@ -489,13 +489,13 @@ Rename a study object, representing a mesh, specified by given values.
- + - + @@ -532,19 +532,19 @@ Rename a study object, representing a mesh, specified by given values.
- + - + - + @@ -581,7 +581,7 @@ Rename a study object, representing a mesh, specified by given values.
- + @@ -607,10 +607,10 @@ Rename a study object, representing a mesh, specified by given values.

-Creates a mesh on the basis of the data generated in other sources (MED object or file).

Parameters:
+Creates a mesh on the basis of the data generated in other sources (MED object or file).
Parameters:
theResult Data generated in other sources (MED object or file).
theMeshName One of the meshes presented in MED file.
theResult Data generated in other sources (MED object or file).
theMeshName One of the meshes presented in MED file.
theEntity Type of entity where the field is defined.
theSubMeshName Name of sub-mesh (group or family).
theNewName Name to be given to the study object.
in string in string  theMeshName,
in string in string  theSubMeshName,
in string in string  theNewName
in string in string  theMeshName,
in string in string  theSubMeshName,
in string in string  theNewName
in string in string  theMeshName,
- - + +
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
@@ -631,7 +631,7 @@ Creates a mesh on the basis of the data generated in other sources (

in string in string  theMeshName,
in string in string  theFamilyName
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined.
@@ -687,13 +687,13 @@ Creates on the basis of a family a mesh which will be composed of geometrical el

in string in string  theMeshName,
in string in string  theGroupName
- - + +
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theGroupName Name of the group.

@@ -737,7 +737,7 @@ Creates a mesh on the basis of a group of families.
Parameter - in string  + in string  theMeshName, @@ -749,7 +749,7 @@ Creates a mesh on the basis of a group of families.
Parameter - in string  + in string  theFieldName, @@ -777,8 +777,8 @@ Creates a mesh on the basis of a group of families.
Parameter

Creates a scalar map presentation.

Parameters:
- - + + @@ -801,7 +801,7 @@ Creates a scalar map presentation.
Parameters:
- + @@ -813,7 +813,7 @@ Creates a scalar map presentation.
Parameters:
- + @@ -841,8 +841,8 @@ Creates a scalar map presentation.
Parameters:

Creates a Gauss Points presentation.

Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -865,7 +865,7 @@ Creates a Gauss Points presentation.
Parameters:
- + @@ -877,7 +877,7 @@ Creates a Gauss Points presentation.
Parameters:
- + @@ -905,8 +905,8 @@ Creates a Gauss Points presentation.
Parameters:

Creates a deformed shape presentation.

Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -929,7 +929,7 @@ Creates a deformed shape presentation.
Parameters:
- + @@ -941,7 +941,7 @@ Creates a deformed shape presentation.
Parameters:
- + @@ -969,8 +969,8 @@ Creates a deformed shape presentation.
Parameters:
Creates a deformed shape presentation.
Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -993,7 +993,7 @@ Creates a deformed shape presentation.
Parameters:
- + @@ -1005,7 +1005,7 @@ Creates a deformed shape presentation.
Parameters:
- + @@ -1033,8 +1033,8 @@ Creates a deformed shape presentation.
Parameters:
Creates a vector presentation.
Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1057,7 +1057,7 @@ Creates a vector presentation.
Parameters:
- + @@ -1069,7 +1069,7 @@ Creates a vector presentation.
Parameters:
- + @@ -1097,8 +1097,8 @@ Creates a vector presentation.
Parameters:

Creates an iso surface presentation.

Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1121,7 +1121,7 @@ Creates an iso surface presentation.
Parameters:
- + @@ -1133,7 +1133,7 @@ Creates an iso surface presentation.
Parameters:
- + @@ -1161,8 +1161,8 @@ Creates an iso surface presentation.
Parameters:

Creates an stream lines presentation.

Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1185,7 +1185,7 @@ Creates an stream lines presentation.
Parameters:
- + @@ -1197,7 +1197,7 @@ Creates an stream lines presentation.
Parameters:
- + @@ -1225,8 +1225,8 @@ Creates an stream lines presentation.
Parameters:
Creates a presentation of cut planes.
Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1249,7 +1249,7 @@ Creates a presentation of cut planes.
Parameters:
- + @@ -1261,7 +1261,7 @@ Creates a presentation of cut planes.
Parameters:
- + @@ -1289,8 +1289,8 @@ Creates a presentation of cut planes.
Parameters:
Creates a presentation of cut lines.
Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1313,7 +1313,7 @@ Creates a presentation of cut lines.
Parameters:
- + @@ -1325,7 +1325,7 @@ Creates a presentation of cut lines.
Parameters:
- + @@ -1353,8 +1353,8 @@ Creates a presentation of cut lines.
Parameters:

Creates a Plot3D presentation.

Parameters:
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
in string in string  theMeshName,
in string in string  theFieldName,
- - + + @@ -1371,7 +1371,7 @@ Creates a Plot3D presentat - + @@ -1675,6 +1675,6 @@ Returns the type of the presentable object
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theResult Data generated in other sources. (MED object or file)
theMeshName One of the meshes presented in MED file
theEntity Type of entity where the field is defined
theFieldName Group of data attributed to the MESH. The data can be scalar or vector.
theIteration Number of iteration on the field
Table VISU.VISU_Gen.CreateTable in string in string  theTableEntry  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html index 562deb3e..6f152f10 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html @@ -17,7 +17,7 @@

VISU.Vectors Interface Reference

Interface of the vector presentation. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.Vectors:

Inheritance graph
@@ -79,9 +79,17 @@ Inheritance diagram for VISU.Vectors:

void SetRange (in double theMin, in double theMax) -void SetBarOrientation (in Orientation theOrientation) +void SetBarOrientation (in Orientation theOrientation) -Orientation GetBarOrientation () +Orientation GetBarOrientation () + +void SetMeshOnGroup (in string theMeshName, in string theGroupName) + +long AddMeshOnGroup (in string theMeshName, in string theGroupName) + +void SetScalarMap (in string theMeshName, in Entity theEntity, in string theFieldName, in long theStampsNum) + +void RemoveAllGeom () void SetScalarMode (in long theScalarMode) @@ -113,9 +121,9 @@ Inheritance diagram for VISU.Vectors:

long GetLabels () -void SetTitle (in string theName) +void SetTitle (in string theName) -string GetTitle () +string GetTitle () void SetOffset (in float theDx, in float theDy, in float theDz) @@ -737,7 +745,7 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit - + @@ -758,6 +766,176 @@ Sets the type of orientation of the scalar bar (to provide backward compatibilit Gets the type of orientation of the scalar bar (to provide backward compatibility).
Orientation VISU.ScalarMap.GetBarOrientation Orientation VISU.ScalarMap.GetBarOrientation  ) 
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set mesh on group as geometry of presentation.(clear all previously added groups).

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
long VISU.ScalarMap.AddMeshOnGroup in string  theMeshName,
in string  theGroupName
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Add group as geometry of presentation.

Parameters:
+ + + +
theMeshName - mesh name
theGroupName - group name
+
+
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void VISU.ScalarMap.SetScalarMap in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theStampsNum
[inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Set scalar map of presentation.

Parameters:
+ + + + + +
theMeshName - mesh name
theFieldName - the name of scalar field
theStampsNum - the iteration number for scalar field
theEntity - entity of scalar field
+
+
+

+ + + + +
+ + + + + + + + +
void VISU.ScalarMap.RemoveAllGeom  )  [inherited]
+
+ + + + + +
+   + + +

+PrsMerger method: Remove all groups.(The scalar map will be placed on all mesh).

@@ -1193,7 +1371,7 @@ Gets the number of labels which will be used for indication of color gradation o - + @@ -1224,7 +1402,7 @@ Sets the title of the scalar bar. By default - the name of the selected result i - + - + @@ -103,9 +103,9 @@ Inheritance diagram for VISU.View:

void 
- + - + @@ -123,7 +123,7 @@ Inheritance diagram for VISU.View:

void 
- + @@ -1000,7 +1000,7 @@ Old methods for view parameters management, they don't work now - + @@ -1031,7 +1031,7 @@ Sets the title of the View frame.
Parameters:
- + - + - + - + - + - + - + @@ -157,9 +157,9 @@ Inheritance diagram for VISU.View3D:

void 
- + - + @@ -167,9 +167,9 @@ Inheritance diagram for VISU.View3D:

void 
- + - + @@ -187,7 +187,7 @@ Inheritance diagram for VISU.View3D:

void 
- + @@ -720,7 +720,7 @@ Removes the scaling of the view. - + @@ -754,7 +754,7 @@ Saves view parameters.
Returns:
True if the view
- + @@ -820,7 +820,7 @@ Get representation type of the given presentation in this view.
void VISU.ColoredPrs3d.SetTitle in string in string  theName  )  [inherited] - + @@ -1414,6 +1592,6 @@ Returns the type of the presentable object
string VISU.ColoredPrs3d.GetTitle string VISU.ColoredPrs3d.GetTitle  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html index 49a49f98..65534caa 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html @@ -17,7 +17,7 @@

VISU.View Interface Reference

View interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.View:

Inheritance graph
@@ -93,9 +93,9 @@ Inheritance diagram for VISU.View:

void 
SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
Maximize ()
void SetTitle (in string theTitle)
void SetTitle (in string theTitle)
string GetTitle ()
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
Update ()
boolean SavePicture (in string theFileName)
boolean SavePicture (in string theFileName)
IdType GetID ()
void VISU.View.SetTitle in string in string  theTitle  )  - + @@ -1300,7 +1300,7 @@ Updates the view. - + @@ -1382,6 +1382,6 @@ Returns the type of the presentable object
string VISU.View.GetTitle string VISU.View.GetTitle  ) 
boolean VISU.View.SavePicture in string in string  theFileName  ) 
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html index a442397e..a7165eae 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html @@ -17,7 +17,7 @@

VISU.View3D Interface Reference

3D view interface More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.View3D:

Inheritance graph
@@ -87,29 +87,29 @@ Inheritance diagram for VISU.View3D:

void 
RemoveScale ()
boolean SaveViewParams (in string theName)
boolean SaveViewParams (in string theName)
boolean RestoreViewParams (in string theName)
boolean RestoreViewParams (in string theName)
PresentationType GetPresentationType (in ScalarMap thePrs)
string SetPresentationType (in ScalarMap thePrs, in PresentationType thePrsType)
string SetPresentationType (in ScalarMap thePrs, in PresentationType thePrsType)
boolean IsShrinked (in ScalarMap thePrs)
string SetShrinked (in ScalarMap thePrs, in boolean isShrinked)
string SetShrinked (in ScalarMap thePrs, in boolean isShrinked)
boolean IsShaded (in ScalarMap thePrs)
string SetShaded (in ScalarMap thePrs, in boolean isShaded)
string SetShaded (in ScalarMap thePrs, in boolean isShaded)
double GetOpacity (in ScalarMap thePrs)
string SetOpacity (in ScalarMap thePrs, in double theOpacity)
string SetOpacity (in ScalarMap thePrs, in double theOpacity)
double GetLineWidth (in ScalarMap thePrs)
string SetLineWidth (in ScalarMap thePrs, in double theLineWidth)
string SetLineWidth (in ScalarMap thePrs, in double theLineWidth)
void ShowPart (in ViewRepresentation ViewRepr, in boolean state)
SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
Maximize ()
void SetTitle (in string theTitle)
void SetTitle (in string theTitle)
string GetTitle ()
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
Update ()
boolean SavePicture (in string theFileName)
boolean SavePicture (in string theFileName)
IdType GetID ()
boolean VISU.View3D.SaveViewParams in string in string  theName  ) 
boolean VISU.View3D.RestoreViewParams in string in string  theName  )  - + @@ -898,7 +898,7 @@ Get shrink state of the given presentation in this view.
Para
string VISU.View3D.SetPresentationType string VISU.View3D.SetPresentationType in ScalarMap  thePrs, - + @@ -976,7 +976,7 @@ Get shading state of the given presentation in this view.
Par
string VISU.View3D.SetShrinked string VISU.View3D.SetShrinked in ScalarMap  thePrs, - + @@ -1054,7 +1054,7 @@ Get opacity of the given presentation in this view.
Parameter
string VISU.View3D.SetShaded string VISU.View3D.SetShaded in ScalarMap  thePrs, - + @@ -1132,7 +1132,7 @@ Get line width of the given presentation in this view.
Parame
- + - + @@ -74,13 +74,13 @@ Inheritance diagram for VISU.XYPlot:

Scaling 
- + - + - + - + @@ -140,9 +140,9 @@ Inheritance diagram for VISU.XYPlot:

void 
- + - + @@ -150,9 +150,9 @@ Inheritance diagram for VISU.XYPlot:

void 
- + - + @@ -170,7 +170,7 @@ Inheritance diagram for VISU.XYPlot:

void 
- + @@ -295,7 +295,7 @@ displaying part ("ALL" isn't setable)
Enumerator:
- + @@ -326,7 +326,7 @@ Sets the title of the XY plot
Parameters:
string VISU.View3D.SetOpacity string VISU.View3D.SetOpacity in ScalarMap  thePrs, - + @@ -1963,7 +1963,7 @@ Old methods for view parameters management, they don't work now - + @@ -1994,7 +1994,7 @@ Sets the title of the View frame.
Parameters:
string VISU.View3D.SetLineWidth string VISU.View3D.SetLineWidth in ScalarMap  thePrs,
void VISU.View.SetTitle in string in string  theTitle  )  [inherited] - + @@ -2263,7 +2263,7 @@ Updates the view. - + @@ -2345,6 +2345,6 @@ Returns the type of the presentable object
string VISU.View.GetTitle string VISU.View.GetTitle  ) 
boolean VISU.View.SavePicture in string in string  theFileName  )  [inherited]
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html index 6ddc8cf4..3b50b012 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html @@ -17,7 +17,7 @@

VISU.ViewManager Interface Reference

Interface of the ViewManager. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.ViewManager:

Inheritance graph
@@ -249,6 +249,6 @@ Returns the type of the presentable object
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html index 3edaf2b1..13205ff1 100644 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html +++ b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html @@ -17,7 +17,7 @@

VISU.XYPlot Interface Reference

Interface of the 2D plot view. More...

-import "VISU_Gen.idl"; +import "VISU_Gen.idl";

Inheritance diagram for VISU.XYPlot:

Inheritance graph
@@ -50,9 +50,9 @@ Inheritance diagram for VISU.XYPlot:


Public Member Functions

void SetSubTitle (in string theTitle)
void SetSubTitle (in string theTitle)
string GetSubTitle ()
string GetSubTitle ()
void SetCurveType (in CurveType theType)
GetVerScaling ()
void SetXTitle (in string theTitle)
void SetXTitle (in string theTitle)
string GetXTitle ()
string GetXTitle ()
void SetYTitle (in string theTitle)
void SetYTitle (in string theTitle)
string GetYTitle ()
string GetYTitle ()
void ShowLegend (in boolean theShowing)
SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
Maximize ()
void SetTitle (in string theTitle)
void SetTitle (in string theTitle)
string GetTitle ()
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
Update ()
boolean SavePicture (in string theFileName)
boolean SavePicture (in string theFileName)
IdType GetID ()
void VISU.XYPlot.SetSubTitle in string in string  theTitle  )  - + @@ -693,7 +693,7 @@ Gets the type vertical scaling of the 2D plot. - + @@ -724,7 +724,7 @@ Sets the title of the X-axis of the plot.
Parameters:
string VISU.XYPlot.GetSubTitle string VISU.XYPlot.GetSubTitle  ) 
void VISU.XYPlot.SetXTitle in string in string  theTitle  ) 
- + @@ -753,7 +753,7 @@ Gets the title of the X-axis of the plot. - + @@ -784,7 +784,7 @@ Sets the title of the Y-axis of the plot.
Parameters:
string VISU.XYPlot.GetXTitle string VISU.XYPlot.GetXTitle  ) 
void VISU.XYPlot.SetYTitle in string in string  theTitle  ) 
- + @@ -1825,7 +1825,7 @@ Old methods for view parameters management, they don't work now - + @@ -1856,7 +1856,7 @@ Sets the title of the View frame.
Parameters:
string VISU.XYPlot.GetYTitle string VISU.XYPlot.GetYTitle  ) 
void VISU.View.SetTitle in string in string  theTitle  )  [inherited] - + @@ -2125,7 +2125,7 @@ Updates the view. - + @@ -2207,6 +2207,6 @@ Returns the type of the presentable object
string VISU.View.GetTitle string VISU.View.GetTitle  ) 
boolean VISU.View.SavePicture in string in string  theFileName  )  [inherited]
+Generated on Wed Jun 20 12:35:56 2007 for SALOME - VISU - v.3.2.6 by doxygen 1.4.6 diff --git a/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html b/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html new file mode 100644 index 00000000..ef4db6de --- /dev/null +++ b/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html @@ -0,0 +1,416 @@ + + + + + + Main Page + + + + +  + + + +

Package VISU

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Data Structures

interface  Base
interface  RemovableObject
 Removable object interface. More...
interface  PrsObject
 Presentable object interface. More...
interface  Table
 Table representation interface More...
interface  Curve
 Interface of curve representation. More...
interface  Container
 Container presentable object interface More...
interface  Prs3d
 3D presentation interface More...
interface  Mesh
 Interface of the mesh. More...
interface  ColoredPrs3d
 Basic Interface for the Colored 3D Presentations. More...
interface  ScalarMap
 Interface of the Scalar Map. More...
interface  GaussPoints
 Gauss Points presentation interface. More...
interface  DeformedShape
 Deformed shape presentation interface. More...
interface  ScalarMapOnDeformedShape
 Scalar Map on Deformed shape presentation interface. More...
interface  Plot3D
 Plot3D interface. More...
interface  CutPlanes
 Cut planes interface. More...
interface  CutLines
 Cut lines presentation. More...
interface  StreamLines
 Interface of the stream lines representation. More...
interface  IsoSurfaces
 Interface of the isometric surface presentation. More...
interface  Vectors
 Interface of the vector presentation. More...
interface  Animation
 Animation class More...
interface  Result
 Interface Result. More...
interface  VISU_Gen
 VISU_Gen interface More...
interface  View
 View interface More...
interface  View3D
 3D view interface More...
interface  TableView
 Interface of the Table view. More...
interface  XYPlot
 Interface of the 2D plot view. More...
interface  ViewManager
 Interface of the ViewManager. More...

Typedefs

typedef string IdType
typedef sequence< string > string_array

Enumerations

enum  Scaling { LINEAR, +LOGARITHMIC + }
enum  Entity { NODE, +EDGE, +FACE, +CELL + }
enum  VISUType {
+  TNONE, +TCURVE, +TTABLE, +TCONTAINER, +
+  TMESH, +TSCALARMAP, +TISOSURFACE, +TDEFORMEDSHAPE, +
+  TSCALARMAPONDEFORMEDSHAPE, +TGAUSSPOINTS, +TPRSMERGER, +TPLOT3D, +
+  TCUTPLANES, +TCUTLINES, +TVECTORS, +TSTREAMLINES, +
+  TVISUGEN, +TVIEWMANAGER, +TRESULT, +TXYPLOT, +
+  TTABLEVIEW, +TVIEW3D, +TGAUSSVIEW, +TENTITY, +
+  TFAMILY, +TGROUP, +TFIELD, +TTIMESTAMP, +
+  TANIMATION, +TALL +
+ }
enum  PresentationType {
+  POINT, +WIREFRAME, +SHADED, +INSIDEFRAME, +
+  SURFACEFRAME, +SHRINK +
+ }
+


Detailed Description

+The main package of interfaces of the post-processing module VISU. +

+


Typedef Documentation

+

+ + + + +
+ + + + +
typedef string VISU.IdType
+
+ + + + + +
+   + + +

+

+

+ + + + +
+ + + + +
typedef sequence<string> VISU.string_array
+
+ + + + + +
+   + + +

+

+


Enumeration Type Documentation

+

+ + + + +
+ + + + +
enum VISU::Scaling
+
+ + + + + +
+   + + +

+This enumeration contains a set of elements defining the type of the scaling, which can be applied on different presentations.

Enumerator:
+ + + +
LINEAR  +Linear type of scaling.
LOGARITHMIC  +Logarithmic type of scaling.
+
+
+

+ + + + +
+ + + + +
enum VISU::Entity
+
+ + + + + +
+   + + +

+This enumeration contains a set of elements defining the type of the entity (topological units) constituting a mesh.

Enumerator:
+ + + + + +
NODE  +Node corresponds to a geometrical point.
EDGE  +Edge corresponds to a geometrical line connecting two points.
FACE  +Face corresponds to a geometrical plane bounded by several lines.
CELL  +Cell is a volumic element of a mesh
+
+
+

+ + + + +
+ + + + +
enum VISU::VISUType
+
+ + + + + +
+   + + +

+This enumeration contains a set of elements defining the type of the VISU object. This enumeration is used for navigation between a set of VISU interfaces.

Enumerator:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TNONE  +Not a VISU object
TCURVE  +Curve line object for construction of 2D XY plots
TTABLE  +Table containing numerical data
TCONTAINER  +Container object used for storing a set of curve lines
TMESH  +Meshing object
TSCALARMAP  +Scalarmap 3D presentation object
TISOSURFACE  +Iso surface 3D presentation object
TDEFORMEDSHAPE  +Deformed shape 3D presentation object
TSCALARMAPONDEFORMEDSHAPE  +Scalar map on deformed shape 3D presentation object
TGAUSSPOINTS  +Gauss Points 3D presentation object
TPRSMERGER  +PRS merger 3D presentation object
TPLOT3D  +Plot3D 3D presentation object
TCUTPLANES  +Cut planes 3D presentation object
TCUTLINES  +Cut lines 3D presentation object
TVECTORS  +Vectors 3D presentation object
TSTREAMLINES  +Streamlines 3D presentation object
TVISUGEN  +VISU generator used for performing operations with different VISU objects
TVIEWMANAGER  +View manager used for performing operations with different views
TRESULT  +The data on which different presentations are based
TXYPLOT  +2D XY plot consisting of one or several curve lines
TTABLEVIEW  +Table view is used for displaying data tables
TVIEW3D  +3D view is used for displaying 3D graphical presentations
TGAUSSVIEW  +3D view is used for displaying Gauss Points graphical presentations
TENTITY  +An element composing a mesh: node, edge, face or cell
TFAMILY  +The whole mesh can be divided into one or several submeshes, called families, which are defined by the user. Each family in its turn is composed of entities of a definite type.
TGROUP  +A group of families
TFIELD  +Field represents the results of calculations (it can be scalar or vector values), grouped together under one physical concept.
TTIMESTAMP  +Time stamp represents a subfield: the results of calculations are taken in one definite moment.
TANIMATION  +Represents Animation object.
TALL  +
+
+
+

+ + + + +
+ + + + +
enum VISU::PresentationType
+
+ + + + + +
+   + + +

+This enumeration contains a set of elements defining the type of presentation of the mesh.

Enumerator:
+ + + + + + + +
POINT  +
WIREFRAME  +
SHADED  +
INSIDEFRAME  +
SURFACEFRAME  +
SHRINK  +
+
+
+ +

+ + -- 2.39.2