From: vsr Date: Tue, 16 Sep 2008 07:21:15 +0000 (+0000) Subject: Implement 'make dist' and 'make distcheck' steps support X-Git-Tag: V5_1_0a1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1261c7c80375519b1d9e787434b7aae9b756d673;p=modules%2Fvisu.git Implement 'make dist' and 'make distcheck' steps support --- diff --git a/Makefile.am b/Makefile.am index d0f22977..f594b4d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,15 +25,20 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am +ACLOCAL_AMFLAGS = -I adm_local/unix/config_files \ + -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \ + -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \ + -I ${MED_ROOT_DIR}/adm_local/unix/config_files + SUBDIRS = adm_local idl resources src doc bin DISTCLEANFILES = a.out aclocal.m4 configure -salomeinclude_DATA=VISU_version.h +salomeinclude_DATA = VISU_version.h -EXTRA_DIST+= \ - build_configure \ - clean_configure \ +EXTRA_DIST += \ + build_configure \ + clean_configure \ LICENCE dist-hook: @@ -42,7 +47,7 @@ dist-hook: usr_docs: (cd doc && $(MAKE) $(AM_MAKEFLAGS) usr_docs) -docs:usr_docs +docs: usr_docs dev_docs: (cd doc && $(MAKE) $(AM_MAKEFLAGS) dev_docs) diff --git a/adm_local/Makefile.am b/adm_local/Makefile.am index 76fe0fa5..ed00ea01 100644 --- a/adm_local/Makefile.am +++ b/adm_local/Makefile.am @@ -19,4 +19,4 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -SUBDIRS= unix \ No newline at end of file +SUBDIRS = unix \ No newline at end of file diff --git a/adm_local/unix/config_files/Makefile.am b/adm_local/unix/config_files/Makefile.am index f4266455..a482e6be 100644 --- a/adm_local/unix/config_files/Makefile.am +++ b/adm_local/unix/config_files/Makefile.am @@ -18,5 +18,5 @@ # include $(top_srcdir)/adm_local/unix/make_common_starter.am -dist_admlocalm4_DATA= \ +dist_admlocalm4_DATA = \ check_VISU.m4 diff --git a/adm_local/unix/make_common_starter.am b/adm_local/unix/make_common_starter.am index d53f5c10..d863afd8 100644 --- a/adm_local/unix/make_common_starter.am +++ b/adm_local/unix/make_common_starter.am @@ -7,48 +7,63 @@ # # Standard directory for installation -salomeincludedir = $(includedir)/@PACKAGE@ -libdir = $(prefix)/lib@LIB_LOCATION_SUFFIX@/@PACKAGE@ -bindir = $(prefix)/bin/@PACKAGE@ +salomeincludedir = $(includedir)/salome +libdir = $(prefix)/lib@LIB_LOCATION_SUFFIX@/salome +bindir = $(prefix)/bin/salome purebindir = $(prefix)/bin salomescriptdir = $(bindir) +salomepythondir = $(pythondir)/salome +salomepyexecdir = $(pyexecdir)/salome # Tests environment folders testsenvirondir = $(prefix)/Tests/environ testsenvironcshdir = $(prefix)/Tests/environ/csh # Directory for installing idl files -salomeidldir = $(prefix)/idl/@PACKAGE@ +salomeidldir = $(prefix)/idl/salome # Directory for installing resource files -salomeresdir = $(prefix)/share/@PACKAGE@/resources/@MODULE_NAME@ +salomeresdir = $(prefix)/share/salome/resources/@MODULE_NAME@ # Directories for installing admin files -admlocaldir = $(prefix)/adm_local -admlocalunixdir = $(admlocaldir)/unix -admlocalm4dir = $(admlocaldir)/unix/config_files +admlocaldir = $(prefix)/adm_local +admlocalunixdir = $(admlocaldir)/unix +admlocalm4dir = $(admlocaldir)/unix/config_files # Shared modules installation directory -sharedpkgpythondir =$(pkgpythondir)/shared_modules +sharedpkgpythondir = $(salomepythondir)/shared_modules # Documentation directory -docdir = $(datadir)/doc/@PACKAGE@ +docdir = $(datadir)/doc/salome # common rules -# moc-files generation +# meta object implementation files generation (moc) %_moc.cxx: %.h $(MOC) $< -o $@ -# qm-files generation +# translation (*.qm) files generation (lrelease) %.qm: %.ts $(LRELEASE) $< -qm $@ -EXTRA_DIST=$(MOC_FILES:%_moc.cxx=%.h) $(nodist_salomeres_DATA:%.qm=%.ts) +# resource files generation (qrcc) +qrc_%.cxx: %.qrc + $(QRCC) $< -o $@ -name $(*F) +# qt forms files generation (uic) +ui_%.h: %.ui + $(UIC) -o $@ $< + +# extra distributed files +EXTRA_DIST = $(MOC_FILES:%_moc.cxx=%.h) $(QRC_FILES:qrc_%.cxx=%.qrc) \ + $(UIC_FILES:ui_%.h=%.ui) $(nodist_salomeres_DATA:%.qm=%.ts) + +# customize clean operation mostlyclean-local: rm -f @builddir@/*_moc.cxx rm -f @builddir@/*.qm + rm -f @builddir@/ui_*.h + rm -f @builddir@/qrc_*.cxx # tests tests: unittest diff --git a/bin/Makefile.am b/bin/Makefile.am index e81b2089..a5f6e4f9 100644 --- a/bin/Makefile.am +++ b/bin/Makefile.am @@ -18,5 +18,8 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -nodist_salomescript_DATA= VERSION -EXTRA_DIST+= VERSION.in +# non-distributed files +nodist_salomescript_DATA = VERSION + +# distributed files +dist_salomescript_SCRIPTS = diff --git a/configure.ac b/configure.ac index b5113abc..da1800ad 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # -AC_INIT([Salome2 Project VISU module], [5.0.0], [webmaster.salome@opencascade.com], [salome]) +AC_INIT([Salome2 Project VISU module], [5.0.0], [webmaster.salome@opencascade.com], [SalomeVISU]) AC_CONFIG_AUX_DIR(salome_adm/unix/config_files) AC_CANONICAL_HOST AC_CANONICAL_TARGET @@ -354,11 +354,11 @@ AC_OUTPUT([ \ ./doc/Makefile \ ./doc/salome/Makefile \ ./doc/salome/gui/Makefile \ + ./doc/salome/gui/VISU/Makefile \ ./doc/salome/gui/VISU/doxyfile \ ./doc/salome/gui/VISU/doxyfile_idl \ ./doc/salome/tui/Makefile \ - ./doc/salome/tui/VISU/doxyfile \ - ./doc/salome/tui/VISU/sources/static/tree.js \ + ./doc/salome/tui/doxyfile \ ./idl/Makefile \ ./resources/VISUCatalog.xml \ ./resources/Makefile \ diff --git a/doc/Makefile.am b/doc/Makefile.am index 68f247f8..cdcfd951 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -17,6 +17,12 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # -SUBDIRS= salome +SUBDIRS = salome -EXTRA_DIST= html \ No newline at end of file +usr_docs: + (cd salome && $(MAKE) $(AM_MAKEFLAGS) usr_docs) + +docs: usr_docs + +dev_docs: + (cd salome && $(MAKE) $(AM_MAKEFLAGS) dev_docs) diff --git a/doc/salome/Makefile.am b/doc/salome/Makefile.am index 35fbf228..344600a1 100644 --- a/doc/salome/Makefile.am +++ b/doc/salome/Makefile.am @@ -18,9 +18,9 @@ # # $Header$ -SUBDIRS= tui gui -SUBDIRSTUI= tui -SUBDIRSGUI= gui +SUBDIRS = tui gui +SUBDIRSTUI = tui +SUBDIRSGUI = gui usr_docs: @@SETX@; for d in $(SUBDIRSGUI); do \ diff --git a/doc/salome/gui/Makefile.am b/doc/salome/gui/Makefile.am index 1ec04c7a..abde2b5a 100644 --- a/doc/salome/gui/Makefile.am +++ b/doc/salome/gui/Makefile.am @@ -22,34 +22,9 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -EXTRA_DIST+=VISU - -doxygen=@DOXYGEN@ +SUBDIRS = VISU usr_docs: - cd ./VISU; \ - echo "Processing VISU_Gen.idl file: "; \ - $(doxygen) ./doxyfile_idl; \ - echo "Running doxygen in directory: "`pwd`; \ - $(doxygen) ./doxyfile; + (cd VISU && $(MAKE) $(AM_MAKEFLAGS) usr_docs) docs: usr_docs - -clean-local: - rm -fr `ls | grep -v "Makefile"` - rm -fr VISU - -install-data-local: usr_docs - mkdir -p $(docdir)/gui - cp -rf VISU $(docdir)/gui - -find $(PWD) -name CVS -prune -exec rm -rf {} \; - -uninstall-local: - rm -rf $(docdir)/gui/VISU - -docguidir=$(docdir)/gui/VISU - -nodist_docgui_DATA= VISU/doxyfile -nodist_docgui_DATA+= VISU/doxyfile_idl -EXTRA_DIST+= VISU/doxyfile.in -EXTRA_DIST+= VISU/doxyfile_idl.in diff --git a/doc/salome/gui/VISU/Makefile.am b/doc/salome/gui/VISU/Makefile.am new file mode 100644 index 00000000..910bc8fe --- /dev/null +++ b/doc/salome/gui/VISU/Makefile.am @@ -0,0 +1,60 @@ +# Copyright (C) 2005 CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# +# File : Makefile.am +# Author : Vasily Rusyaev (Open Cascade NN) +# Module : doc + +include $(top_srcdir)/adm_local/unix/make_common_starter.am + +EXTRA_DIST += images input static + +usr_docs: doxyfile_idl doxyfile + @echo "===========================================" ; \ + echo "Processing VISU_Gen.idl file" ; \ + echo "===========================================" ; \ + $(DOXYGEN) doxyfile_idl; \ + echo "===========================================" ; \ + echo "Generating GUI documentation" ; \ + echo "===========================================" ; \ + $(DOXYGEN) doxyfile; + +docs: usr_docs + +clean-local: + @for filen in `find .` ; do \ + case $${filen} in \ + ./Makefile | ./doxyfile | ./doxyfile_idl ) ;; \ + . | .. ) ;; \ + *) echo "Removing $${filen}" ; rm -rf $${filen} ;; \ + esac ; \ + done ; + +install-data-local: usr_docs + $(INSTALL) -d $(DESTDIR)$(docdir)/gui/VISU + @for filen in `find .` ; do \ + case $${filen} in \ + ./Makefile | ./doxyfile | ./doxyfile_idl ) ;; \ + ./doxyfile.bak | ./doxyfile_idl.bak ) ;; \ + . | .. ) ;; \ + *) echo "Installing $${filen}" ; cp -rp $${filen} $(DESTDIR)$(docdir)/gui/VISU ;; \ + esac ; \ + done ; + +uninstall-local: + rm -rf $(DESTDIR)$(docdir)/gui/VISU diff --git a/doc/salome/gui/VISU/doxyfile.in b/doc/salome/gui/VISU/doxyfile.in index b8330d48..9aa594fc 100755 --- a/doc/salome/gui/VISU/doxyfile.in +++ b/doc/salome/gui/VISU/doxyfile.in @@ -2,7 +2,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = "Post-Pro Module Reference Manual v.@VERSION@" -OUTPUT_DIRECTORY = ./ +OUTPUT_DIRECTORY = . CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English TAB_SIZE = 5 @@ -18,13 +18,15 @@ WARNINGS = YES #--------------------------------------------------------------------------- INPUT = @srcdir@/input FILE_PATTERNS = *.doc +EXCLUDE = IMAGE_PATH = @srcdir@/images +EXAMPLE_PATH = #--------------------------------------------------------------------------- #HTML related options #--------------------------------------------------------------------------- GENERATE_HTML = YES -HTML_OUTPUT = ./ +HTML_OUTPUT = . HTML_HEADER = @srcdir@/static/header.html HTML_FOOTER = @srcdir@/static/footer.html #HTML_STYLESHEET = @srcdir@/static/doxygen.css @@ -46,4 +48,4 @@ GENERATE_RTF = NO #--------------------------------------------------------------------------- #External reference options #--------------------------------------------------------------------------- -TAGFILES = visugen_doc.tag=./visugen_doc \ No newline at end of file +TAGFILES = visugen_doc.tag=visugen_doc diff --git a/doc/salome/gui/VISU/doxyfile_idl.in b/doc/salome/gui/VISU/doxyfile_idl.in index 60d89c2d..18af834e 100755 --- a/doc/salome/gui/VISU/doxyfile_idl.in +++ b/doc/salome/gui/VISU/doxyfile_idl.in @@ -2,7 +2,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = "Post-Pro Module Reference Manual v.@VERSION@" -OUTPUT_DIRECTORY = ./ +OUTPUT_DIRECTORY = . CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English USE_WINDOWS_ENCODING = NO @@ -66,8 +66,8 @@ VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- -QUIET = NO -WARNINGS = YES +QUIET = NO +WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO @@ -86,7 +86,7 @@ RECURSIVE = NO #HTML related options #--------------------------------------------------------------------------- GENERATE_HTML = YES -HTML_OUTPUT = ./visugen_doc +HTML_OUTPUT = visugen_doc HTML_HEADER = @srcdir@/static/header.html HTML_FOOTER = @srcdir@/static/footer.html #HTML_STYLESHEET = @srcdir@/static/doxygen.css @@ -134,4 +134,4 @@ DOT_CLEANUP = YES #--------------------------------------------------------------------------- #External reference options #--------------------------------------------------------------------------- -GENERATE_TAGFILE = visugen_doc.tag +GENERATE_TAGFILE = visugen_doc.tag diff --git a/doc/salome/gui/VISU/files/about_structure_of_med_object.htm b/doc/salome/gui/VISU/files/about_structure_of_med_object.htm deleted file mode 100755 index 551859c6..00000000 --- a/doc/salome/gui/VISU/files/about_structure_of_med_object.htm +++ /dev/null @@ -1,255 +0,0 @@ - - - - - -About structure of MED object - - - - - - - - - - - - -

Structure of MED objects

- -

 In Post-Pro module - 3d representations are constructed on the base of  submeshes - representing parts of a mesh, which is stored in form of MED objects in - *.med files. Each MED object has its own user-defined structure.

- -

 

- -

In general, the mesh - represents an object including the following types of data:

- -

 

- -

 - - Geometrical information: list - of nodes, edges, faces and cells of the mesh;

- -

 - - Information on the interpolation in - accordance with resulting elements: the mesh should be compatible - with chosen interpolation;

- -

 - - Physical information: initial - and boundary conditions. (Scalar or vector values applied to the cells - of the mesh)

- -

 

- -

The structure of MED - object has a tree-like form. It contains three main folders: Families, Groups, Fields.

- -

 

- -

            

- -

Families

- -

From - general point of view, the whole mesh is divided into families, - submeshes created by the user. Every - family is composed of cells of a definite type  - - it can be Nodes, Edges, Faces or Cells. The presentation created - on the basis of a particular family will - be composed of geometrical elements, corresponding to the type of cells - of this family.  

- -

 

- -
- - --- - - - - - - - - - - - - - - - - - - - - -
-

Type of cells (entities) of the family

-

Geometrical element

-

Nodes

-

Points

-

Edges

-

Segments

-

Faces

-

Triangles, quadrangles

-

Cells

-

Any

-
-

Table of correspondence

- -

 

- -

 In - the folder Families all families - of the mesh are put into the following subfolders, defining the type of - cells of the mesh: onNodes, onEdges, - onFaces, onCells.

- -

These - subfolders also represent submeshes of the mesh, which are composed of - all cells of the mesh of this type.

- -

Groups

- -

Groups - combine different families independently of the type of cells, - they are composed of.

- -

 

- -

Fields

- -

Fields represent the results of calculations - (scalar or vector values), grouped together under one physical concept. -

- -

These - values are applied to the cells of a definite submesh, which is indicated - in the Object Browser in the subfolder of the field. -

- -

Most - often the calculations are performed during some period of time. That's - why fields include Time - Stamps, representing the results of calculations in one definite - moment. In Post-Pro field presentations - are constructed basing on these Time - Stamps. (See: Creating - field presentations)  

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/about_tables.htm b/doc/salome/gui/VISU/files/about_tables.htm deleted file mode 100755 index ab5213d8..00000000 --- a/doc/salome/gui/VISU/files/about_tables.htm +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -About tables - - - - - - - - - - - - - -

About tables

- -

Functionality of Post-Pro component allows to import - data tables and display them in a special table viewer. Tables - represent column-ranged data with units - and column and row - titles (see also).

- -

 

- -

Tables can be rarefied - - some of the cells may be empty, without any values.

- -

 

- -

In Post-Pro - there are  three - methods to import tables:

- -

 

- -

1. -  Importing - tables from *.xls, *.txt or *.tab files, which have been previously created.

- -

 

- -

2. -  Creating - tables on the basis of Cut Lines presentations

- -

 

- -

3. -   Importing - tables with the help of a special Python script (not described in this - reference manual)

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/animating_presentations.htm b/doc/salome/gui/VISU/files/animating_presentations.htm deleted file mode 100755 index df79eedc..00000000 --- a/doc/salome/gui/VISU/files/animating_presentations.htm +++ /dev/null @@ -1,385 +0,0 @@ - - - - - -Animating presentations - - - - - - - - - - - - - -

Animating presentations

- -

In Post-Pro - module you can generate real-time animation of fields. In comparison - with sweeping, animations are created on the - base of frames, displaying field presentations generated on EVERY - Time Stamp of your field. So, the frame displaying the field presentation - created on the base of the first time stamp will begin your animation - and the frame displaying the field presentation created on the base of - the last time stamp will end it. In sweeping ONLY - ONE Time Stamp is used for its generation.

- -

 

- -

In the case of animation of several fields - Parallel Animation will display - the animations simultaneously, while Successive Animation will display them - one after another.

- -

In the case of - Parallel Animation you can set different kinds of presentations - for each of the selected fields. This animation type also requires that - the number of time stamps > 1 and is the same for all animated fields. -

- -

For Successive - Aimation the kind of presentation - should be the same for all selected fields, which means that it is not - possible to select a field from the list.  It - is also necessary that the number of time stamps > 0 and the number - of components is the same for all animated fields.

- -

 

- -

To generate an animation:

- -

 

- -

1. -  Right-click - on the field in the Object Browser.

- -

2. -  From the - pop-up menu select Parallel or Successive Animation.

- -

 

- -

The following dialog - box will appear:

- -

                       

- -

 

- -

 

- -

Animation - dialog box is destined for management of your animation.

- -

 

- -

3. - Click Setup Animation button. - The following dialog box allowing to set the parameters of your animation - will appear.

- -

 

- -

           

- -

 

- -

- - Use range of time stamps check - box allows to select the range of time stamps, which will be used for - generating your animation.

- -

 

- -

- - Fields: list of fields for animation.

- -

 

- -

- Properties: Here you can adjust properties - of each field selected from the list:

- -

 

- - - -

 

- -

4. -  Click OK to validate your parameters. You - will return back to Animation dialog - box

- -

 

- -

5. -  Click Generate frames button to generate the - frames for your animation based on the parameters adjusted in Setup - Animation dialog box.

- -

 

- -

Running animations:

- -

 

- -

In - the main Animation dialog box - there are several button intended for management and running your animation:

- -

 

- -

       Running - your animation.

- -

 

- -

        Previous / Next - frame (time step)

- -

 

- -

        To the beginning - / end of the animation.

- -

 

- -

Additional options of the animation:

- -

 

- -

You - can increase/decrease the speed - of your animation by moving the Speed - wheel Up/Down:

- -

 

- -

       

- -

 

- -

Cycled - animation check box: This option allows to start a cycled animation - of your presentation.

- -

 

- -

Use proportional timing check - box: This option allows to render your animation with proportional periods - of time between every frame (not depending on the time stamps).

- -

 

- -

Clean memory at each frame - this - option allows to optimize the performance of the operation.

- -

 

- -

Saving Animations:

- -

 

- -

Save - pictures to directory check box: This option allows to save all - the frames composing the animation into a definite directory, which can - be specified in Path field.

- -

 

- -

Save - Animation to AVI file check box This option allows to save the - animation into a definite .avi file, which can be specified in Path - field.

- -

 

- -

Save animation to AVI file - works only if there is jpeg2yuv - utility installed on your computer. If this third-party product is missing, - the check-box will not be selectable. This utility is a part of  mjpegtool - package, which can be downloaded from http://mjpeg.sourceforge.net/. -  Run "which jpeg2yuv" - to check whether this tool has been installed and the path to it was properly - added to your PATH variable. If not, you need to activate mjpegtools - indicating its location in the variable PATH. The syntax of the - command should be as follows:  

- -

export PATH=${INSTALL_ROOT}/mjpegtools-1.8.0/bin:${PATH}.

- -

 

- -

Save - Animation - saves changes made in the published animation. If you - have already published a study and press Publish - to study again you get another animation in the Object Browser. -

- -

 

- -

Publish - to Study - saves your animation in the study and presents it in - the Object Browser

- -

 

- -

The - following picture shows an animation of deformation of an object:

- -

 

- -

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/changing_visualization_parameters_of_the_presenetation.htm b/doc/salome/gui/VISU/files/changing_visualization_parameters_of_the_presenetation.htm deleted file mode 100755 index 5df43c6b..00000000 --- a/doc/salome/gui/VISU/files/changing_visualization_parameters_of_the_presenetation.htm +++ /dev/null @@ -1,333 +0,0 @@ - - - - - -Setting presentation view parameters - - - - - - - - - - - - - -

Viewing 3D presentations. -

- -

Each  newly - created presentation is displayed in the VTK - 3D Viewer. VTK 3D Viewer - is detailly described in the documentation on - GUI module.

- -

To display an existing presentation, right-click on it in the Object - Browser and select Display.  

- -

 

- -

Right mouse-click on the Presentation gives access to the following - options:

- -

 

- -

- -

 

- -

All parameters are context-sensitive: - NOT all types of visualization and NOT all properties can be set for a - certain 3D presentation.                            

- -

 

- - - -

 

- - ---- - - - - - - - - - - - - - - - - - - - -
-

Points

-

Surface

-

Wireframe

-

-

-

-

Insideframe (displays the wires - lying within the object)

-

Shrink

-

Shading on

-

-

-

- -

 

- - - -

 

- -

- -

 

- - - - - -

 

- -

When you create several presentations of the same - object, you may wish to see them simultaneously,  which - might be impossible, because they all are located at the same place. To - solve this problem, right-click in the viewer and select Arrange - Actors in the pop-up menu.    

- -

 

- -

- -

 

- -

In Auto - mode you specify along which Axis - and at which Relative Distance - the presentations should be lined up.

- -

 

- -

- -

 

- -

In Manual - mode you set the coordinates for each presentation separately.

- -

 

- -

 

- -

Displaying several presentations at the same time - may cause superposition of their scalar bars. To avoid this, check Arrange Scalar Bars radio button  in - the Preferences - > Post-Pro - > - Scalar Bar. A separate scalar bar will be displayed for each presentation. -

- -

Alternatively you may wish to merge the - scalar bars to have a common scalar bar for all presentations. To do this, - select several presentations or fields in the object browser, right-click - and from the pop-up menu select  Merge Scalar Range. -

- -

To restore separate bars and scales for - each module select Use Field Range - from the same menu.

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/creating_curves.htm b/doc/salome/gui/VISU/files/creating_curves.htm deleted file mode 100755 index b75af456..00000000 --- a/doc/salome/gui/VISU/files/creating_curves.htm +++ /dev/null @@ -1,231 +0,0 @@ - - - - - -Creating curves - - - - - - - - - - - - - -

Creating curves

- -

Post-Pro functionality allows to create  Curve - lines  on - the basis of the data taken from tables, and to display these curves in - form of 2D plot using Plot2d viewer.

- -

 

- -

To create curves:

- -

 

- -

1. -  Right-click - on the required table in the Object Browser

- -

 

- -

2.  From - the pop-up menu choose Create Curves - option.

- -

 

- -

3.  The - following dialog box will appear:

- -

 

- -

- -

 

- -

This dialog box has the form of a table; - each row of this table represents one column of values of the imported - data table.

- -

To construct curve lines, you should choose - at least two columns of the data table by checking them in the Axis - part of the  dialog - box:

- - - -


-The column Assigned allows to represent - the values assigned to the points of the curve (possible for V-rows only). - Any row, even coinciding with the current or empty (no values assigned), - can be represented. All values are indicated with tool tips over the corresponding - curve points in the Plot2d viewer
-
-To define the  Attributes - of your curve remove the checkmark from Auto - assign  (if - it is checked, default attributes are taken) and select:

- - - -

 

- -

From this dialog box you can create several curves for the - columns of your data table with the same units. Post-Pro - allows to display at once up to 200 curves.

- -

 

- -

4. -  Click OK to create your curves with the given - parameters. Post-Pro will automatically - create your curve or curves in the structure of the study under two SALOME - objects:

- -

-  SALOME - table object,

- -

-  Plot2DView object: - SALOME container of curve lines which will be created automatically.

- -

 

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/creating_field_presentations.htm b/doc/salome/gui/VISU/files/creating_field_presentations.htm deleted file mode 100755 index bd34dde5..00000000 --- a/doc/salome/gui/VISU/files/creating_field_presentations.htm +++ /dev/null @@ -1,171 +0,0 @@ - - - - - -Creating field presentations - - - - - - - - - - - - - -

Creating field presentations

- -

To create a field presentation (see - also):

- -

 

- -

Right-click on one of the time stamps of this - field in the Object browser and choose the required type of presentation - from the following pop-up menu:

- -

 

- -

             

- -

 

- -

In Post-Pro fields - may contain both scalar and vector values, applied to the cells of the - submesh, as well as ONLY scalar - values. It is not possible to make a vector presentation for fields containing - only scalar values.

- -

 

- -

For - fields containing only scalar values, you can create the following types - of presentation:

- -

 

- -

                         

- -

 

- -

- - Click on one of the time stamps of this field in the Object browser and - select the required type of presentation from the  Visualization - submenu of the main menu - or from the Visualization Toolbar

- -

 

- -

The new field presentation will be located - in the time stamp subfolder in the Object Browser and displayed

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/creating_presentations.htm b/doc/salome/gui/VISU/files/creating_presentations.htm deleted file mode 100755 index 7e5c95e1..00000000 --- a/doc/salome/gui/VISU/files/creating_presentations.htm +++ /dev/null @@ -1,138 +0,0 @@ - - - - - -Creating presentations - - - - - - - - - - - - - -

Presentation of a submesh

- -

To create a presentation of a submesh:

- -

 

- -

In the Object Browser right-click on a submesh - of an imported MED object and from the pop-up menu choose Create - Presentation:

- -

 

- -

                       This - presentation will be displayed in the viewer:

- -

 

- -

            

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/creating_xy_plot.htm b/doc/salome/gui/VISU/files/creating_xy_plot.htm deleted file mode 100755 index ae6f02f5..00000000 --- a/doc/salome/gui/VISU/files/creating_xy_plot.htm +++ /dev/null @@ -1,207 +0,0 @@ - - - - - -Creating XY plot - - - - - - - - - - - - - -

Creating XY plots

- -

To create a XY plot based on one definite curve:

- -

 

- -

1.  Select - Plot2d viewer: from the main menu choose Window - > New Window > Plot2d View

- -

 

- -

2. In the Object Browser right-click - on this curve line and from the pop-up menu select Display - item.

- -

 

- -

To create a XY plot based on several curves:

- -

 

- -

1.  Select - Plot2d viewer: from the main menu choose Window - > New Window > Plot2d View

- -

 

- -

2. In - the Object Browser right-click on the Post-Pro object - and from the pop-up menu select Create Plot2D View.

- -

 

- -

3. Right-click on the name of this container - in the Object Browser and select Edit - item. The following dialog box will appear:

- -

 

- -

- -

 

- -

 

- -

 This box contains - two windows:

- -

 

- -

- Left window displays a list of curve lines, - which have been created in the study.

- -

 

- -

- Right window displays a list of curve lines - contained in this particular container. These curves will used for creation - of the XY plot.

- -

 

- -

To move a definite curve line from the study - into the container, select it in the left window of this dialog box and - click button.  

- -

      

- -

To - move a definite curve line from the container back into the study, select - it in the right window of this dialog box and click button. -

- -

 

- -

After - having chosen the curve lines, which will compose your XY plot, click - OK button to quit this dialog - box. In the Object Browser the references to the selected curve lines - will be created under your container:

- -

 

- -

4. - Right-click on the name of the container in the Object Browser and select - Display button. A XY plot consisting - of the previously selected curve lines, will be displayed in the viewer:

- -

 

- -

- -

       

- -

     

- - - - diff --git a/doc/salome/gui/VISU/files/cut_lines_presentation.htm b/doc/salome/gui/VISU/files/cut_lines_presentation.htm deleted file mode 100755 index 73fb3794..00000000 --- a/doc/salome/gui/VISU/files/cut_lines_presentation.htm +++ /dev/null @@ -1,276 +0,0 @@ - - - - - -Cut Lines presentation - - - - - - - - - - - - - -

Cut - Lines presentation

- -

Cut Lines is a type of - presentation which displays colored cells with applied scalar values on - the mesh where lines are placed.

- -

The - procedure of construction of Cut Lines - presentation reuses the algorithm of creation Cut - Planes presentation and consists of two steps:

- -
    - -
  1.  From - Cut Planes presentation one plane - is taken and it is used as base plane for construction of cut lines.

  2. - -
  3. This plane is cut by - a regular array of planes. The result of this operation is a regular array - of lines in space,  belonging - to the same plane and having the same orientation. They are located inside - or on the mesh.

  4. -
- -

 

- -

To create a - Cut Lines presentation:

- -

 

- -

- Right-click on one of the time stamps of - the field in the Object browser and from the pop-up menu choose Cut Lines, or

- -

 

- -

- Click on one of the time stamps of the field - in the Object browser and select from the main menu Visualization - > Cut Lines, or click icon - in the Visualization Toolbar.

- -

 

- -

- -

 

- -

Plane of - lines: this tab of the dialog box contains the parameters of the - base plane, on which the cut lines will be located.

- -

 

- - - -

See more about table presentations and curve - lines here.

- -

 

- -

Cut - Planes: this tab of the dialog box contains the parameters of cut - planes, which will be used for construction of the cut lines.

- -

 

- -

Scalar Bar - tab allows to define the parameters of the scalar bar displayed - with this presentation (see - also).

- -

 

- -

After - you have finished with setting these parameters, click OK. - Your presentation with scalar bar will be immediately displayed - in the viewer:

- -

    

- -

 

- -

From Cut Lines presentation - you can create a data table. This - table will consist of the field scalar values located on each cut line - of the constructed presentation (see - also: Creating tables from Cut Lines presentations). After that your - data table can be used for construction of a 2d plot of curves based on - the scalar values from the table (see also: Creating - curves and Creating XY plots). -   

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/cut_lines_resentation.htm b/doc/salome/gui/VISU/files/cut_lines_resentation.htm deleted file mode 100755 index c42da1b6..00000000 --- a/doc/salome/gui/VISU/files/cut_lines_resentation.htm +++ /dev/null @@ -1,204 +0,0 @@ - - - - - -Cut Planes presentation - - - - - - - - - - - - - -

Cut Planes presentation

- -

Cut Planes is a - type of field presentation, when the given shape is cut by a definite - number of surfaces. These surfaces are colored according the values applied - to the cells of the mesh.

- -

 

- -

To create a Cut Planes -  presentation:

- -

 

- -

- Right-click on one of the time stamps of - the field in the Object browser and from the pop-up menu choose Cut Planes, or

- -

 

- -

- Click on one of the time stamps of the field - in the Object browser and select from the main menu Visualization - > Cut Planes, or click icon - in the Visualization Toolbar.

- -

 

- -

- -

 

- - - -

 

- - - -

 

- -

After you have finished with setting - these parameters, click OK. Your - presentation with scalar bar will be immediately displayed in the viewer: -

- -

 

- -

         

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/deformed_shape_presentation.htm b/doc/salome/gui/VISU/files/deformed_shape_presentation.htm deleted file mode 100755 index 41a5a9d8..00000000 --- a/doc/salome/gui/VISU/files/deformed_shape_presentation.htm +++ /dev/null @@ -1,193 +0,0 @@ - - - - - -Deformed Shape presentation - - - - - - - - - - - - - -

Deformed Shape presentation

- -

Deformed Shape is - a type of field presentation when vector values corresponding to the cells - of the mesh are visualized by shifting of these cells.

- -

 

- -

To create a Deformed Shape  presentation:

- -

 

- -

- Right-click on one of the time stamps of - the field in the Object browser and from the pop-up menu choose Deformed Shape, or

- -

 

- -

- Click on one of the time stamps of the field - in the Object browser and select from the main menu Visualization - > Deformed Shape, or click icon - in the Visualization Toolbar.

- -

 

- -

- -

 

- - - - - -

 

- - - -

 

- -

After you have finished - with setting these parameters, click OK. - Your presentation with scalar bar will be immediately displayed - in the viewer:

- -

 

- -

         

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/displaying_hiding_presentations.htm b/doc/salome/gui/VISU/files/displaying_hiding_presentations.htm deleted file mode 100755 index 959acd8d..00000000 --- a/doc/salome/gui/VISU/files/displaying_hiding_presentations.htm +++ /dev/null @@ -1,251 +0,0 @@ - - - - - -Displaying/Hiding presentations - - - - - - - - - - - - - -

Operations with presentations

- -

- -

 

- -

To display a presentation:

- -

 

- -

Right-click on it in the Object Browser and - from the pop-up menu choose Display. -

- -

                       

- -

To display several presentations:

- -

 

- -

Hold down Ctrl - button and select in the Object Browser the presentations for displaying. - Right-click with the mouse and from the pop-up menu select Display. -

- -

 

- -

To display only one presentation: -

- -

 

- -

 Choose - Display only option. The other - presentations will be immediately  hidden.

- -

 

- -

To hide this presentation:

- -

 

- -

From the same pop-up menu choose Erase. - (This option will automatically appear in this pop-up menu if this presentation - have been displayed)

- -

 

- -

 

- -

To hide all presentations: -

- -

 

- -

From the main menu choose Representation - > Erase All, click button   in the Representation toolbar - or right-click in the 3D Viewer and select Erase - All in the pop-up menu.   

- -

                                

- -

 

- -

To delete an existing presentation:

- -

 

- -

Right-click on it in the Object Browser and - from the pop-up menu choose Delete. -

- -

 

- -

Operations accessible only for field presentations.

- -

 

- -

To copy a field presentation:

- -

 

- -

1. - Right-click on this presentation in the Object Browser or in the viewer.

- -

 

- -

2. - From the pop-up menu select Same as option.

- -

 

- -

Your - field presentation will duplicated in the same subfolder (time stamp) - in the Object Browser.

- -

 

- -

 

- -

To set additional parameters of field presentations:

- -

 

- -

1. - Right-click on this presentation in the Object Browser or in the viewer.

- -

 

- -

2. - From the pop-up menu select Edit  option.

- -

 

- -

This - option allows to set or modify additional parameters of field presentations - after its creation.

- -

 

- -

To rename a field presentation

- -

 

- -

1. Right-click on this - presentation in the Object Browser or in the viewer.

- -

 

- -

2. From the pop-up menu select Rename - option, the following dialog box will appear:

- -

 

- -

                       

- -

 

- -

In the field Name - enter your personal name of the presentation and click OK - button to confirm your choice. The name of the presentation will - change in the Object Browser.

- - - - diff --git a/doc/salome/gui/VISU/files/displaying_tables.htm b/doc/salome/gui/VISU/files/displaying_tables.htm deleted file mode 100755 index d47dff40..00000000 --- a/doc/salome/gui/VISU/files/displaying_tables.htm +++ /dev/null @@ -1,134 +0,0 @@ - - - - - -Displaying tables - - - - - - - - - - - - - -

Displaying tables

- -

To display a table:

- -

 

- -

1.  Right-click - on the required table in the Object Browser

- -

 

- -

2.  From - the pop-up menu choose Show Table option. - Your table will be displayed in a separate View - Table window:

- -

 

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/getting_elements_attributes.htm b/doc/salome/gui/VISU/files/getting_elements_attributes.htm deleted file mode 100755 index d45edd74..00000000 --- a/doc/salome/gui/VISU/files/getting_elements_attributes.htm +++ /dev/null @@ -1,224 +0,0 @@ - - - - - -Getting elements attributes - - - - - - - - - - - - - -

Selection Info

- -

To view the attributes of elements (cells, points, meshes) - displayed in the viewer:

- -

 

- -

- -

 

- -

 

- -

In the main menu choose  Selection > - Selection info...,  choose - the necessary type of elements (Point, - Cell, or Actor) in the - dialog box and click on the element of the required type in the viewer. - The chosen element will be highlighted and its attributes will be displayed - in this dialog box:

- -

- -

You can get the following information - about Points:

- - - -

 

- -

- -

The following information about - Cells is available:

- - - -

 

- -

- -

 

- -

An - Actor (any 3D object (presentation - of a submesh, field presentation) displayed in the viewer) possesses the following characteristics:

- - - -

 

- -

Using this dialog box, you can examine the attributes of a - definite point or cell, selected by its ID number. For that, you should - only enter an ID number of a definite point or cell in the ID - field, the attributes of this point or cell will be immediately - displayed.

- - - - diff --git a/doc/salome/gui/VISU/files/getting_started.htm b/doc/salome/gui/VISU/files/getting_started.htm deleted file mode 100755 index e462ea6b..00000000 --- a/doc/salome/gui/VISU/files/getting_started.htm +++ /dev/null @@ -1,150 +0,0 @@ - - - - - -Getting started - - - - - - - - - - - - - - - -

Usage overview

- -

HOW TO:

- -

Create a new study and launch - Post-Pro module   -

- -

 

- -

Import a mesh from a MED - file   

- -

 

- -

Create a presentation of - a submesh and set view parameters  

- -

 

- -

Create field presentations - and use sweeping  

- -

 

- -

Animate fields  

- -

 

- -

  Import a table from a file and create a 2d plot based on - the data from this table

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/importing_med_objects.htm b/doc/salome/gui/VISU/files/importing_med_objects.htm deleted file mode 100755 index 64156285..00000000 --- a/doc/salome/gui/VISU/files/importing_med_objects.htm +++ /dev/null @@ -1,202 +0,0 @@ - - - - - -Importing MED objects - - - - - - - - - - - - -

Importing MED file

- -

To import a MED file:

- -

 

- -

From - the File menu choose Import -  - > - MED File or right-click on the Post-Pro - object in the Object Browser and select MED - File option. After it you - will see a standard dialog box allowing to search for and choose *.med -  files:

- -

 

- -

                 

- -

 

- -

To - confirm your choice click Open.

- -

 

- -

If - the option Use Build Progress - is checked in Post-Pro Sweep and MED - Import Preferences, you will be able to choose how the object containing - in the file will be built, otherwise the structure of the imported MED - object will be immediately displayed in the Object Browser and it will - be loaded and built as set in the Preferences.

- -

 

- -

- -

 

- -

Settings

- - - -

 

- -

Import progress - - allows to choose what items exactly should be built at loading. By default - everything is checked in.  Note that the - coloured rectangles show the progress of the respective step and become - blue when complete.

- - - -

 

- -

Time - shows the Elapsed - time spent by the application on processing.

- -

 

- -

-Related Topics - -

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/importing_tables.htm b/doc/salome/gui/VISU/files/importing_tables.htm deleted file mode 100755 index cc2046a5..00000000 --- a/doc/salome/gui/VISU/files/importing_tables.htm +++ /dev/null @@ -1,154 +0,0 @@ - - - - - -Importing tables - - - - - - - - - - - - -

Importing/exporting - tables

- -

To import a table from file:

- -

 

- -

1.  From - the main menu choose File > Import - > Table from File, or in the Object Browser right-click on the - Post-Pro object and select Table from File item. -

- -

 

- -

2.  From - the following standard dialog box:

- -

 

- -

          

- -

 

- -

choose the necessary *.xls, *.txt or - *.tab file containing tables and click Open - button.  

- -

 

- -

3.  In - the Object Browser Post-Pro will - create a new folder having the name of the imported file. All tables from - this file will be located in this folder. One *.xls file can contain several - tables.    

- -

 

- -

To export a table:

- -

 

- -

1. Click on it in the Object Browser and - select Export Table.

- -

 

- -

2. - In the standard dialog box enter the name of the file, which will contain - your exported table, and click OK button. - Your table will be exported.

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/insideframe.htm b/doc/salome/gui/VISU/files/insideframe.htm deleted file mode 100755 index 0ca8f5f6..00000000 --- a/doc/salome/gui/VISU/files/insideframe.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Insideframe - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/files/introduction.htm b/doc/salome/gui/VISU/files/introduction.htm deleted file mode 100755 index 37998587..00000000 --- a/doc/salome/gui/VISU/files/introduction.htm +++ /dev/null @@ -1,156 +0,0 @@ - - - - - -Introduction - - - - - - - - - - - - - -

Introduction to Post-Pro

- -

Post-processing module Post-Pro -  for - SALOME  is - destined for visualization of data produced by the other components of - the platform. Post-Pro provides -  various - forms of data visualization including:

- -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

                

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/iso_surfaces_presentation.htm b/doc/salome/gui/VISU/files/iso_surfaces_presentation.htm deleted file mode 100755 index c0207a61..00000000 --- a/doc/salome/gui/VISU/files/iso_surfaces_presentation.htm +++ /dev/null @@ -1,215 +0,0 @@ - - - - - -Iso Surfaces presentation - - - - - - - - - - - - - -

Iso Surfaces presentation

- -

Iso Surfaces presentation - combines all equal scalar values applied to the cells and on the basis - of them constructs  isobaric - surfaces, which form this presentation.

- -

 

- -

To create an Iso Surfaces - presentation:

- -

 

- -

- Right-click on one of the time stamps of - the field in the Object browser and from the pop-up menu choose Iso Surfaces, or

- -

 

- -

- Click on one of the time stamps of the - field in the Object browser and select from the main menu Visualization - > Iso Surfaces, or click icon - in the Visualization Toolbar

- -

 

- -

- -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- -

After - you have finished with setting these parameters, click OK. - Your presentation with scalar bar will be immediately displayed - in the viewer:

- -

 

- -

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/points.htm b/doc/salome/gui/VISU/files/points.htm deleted file mode 100755 index bf1d9a6e..00000000 --- a/doc/salome/gui/VISU/files/points.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Points - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/files/running_visu.htm b/doc/salome/gui/VISU/files/running_visu.htm deleted file mode 100755 index 9121b1b2..00000000 --- a/doc/salome/gui/VISU/files/running_visu.htm +++ /dev/null @@ -1,130 +0,0 @@ - - - - - -Running VISU - - - - - - - - - - - - -

Running Post-Pro

- -

To start Post-Pro module in the SALOME - application click icon in the toolbar.

- -

          

- -

Before launching Post-Pro module, you should set the VTK - viewer as default viewer for creation of a new study window. In Post-Pro - you can create presentations only in the VTK viewer. (see also: Setting - preferences)

- -

 

- -

The initial desktop of - the SALOME platform will be updated with some additional toolbars and - menus related to Post-Pro component . It will look like as follows:

- -

 

- -

            

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/scalar_map_presentation.htm b/doc/salome/gui/VISU/files/scalar_map_presentation.htm deleted file mode 100755 index 8367a3fc..00000000 --- a/doc/salome/gui/VISU/files/scalar_map_presentation.htm +++ /dev/null @@ -1,396 +0,0 @@ - - - - - -Scalar Map presentation - - - - - - - - - - - - - -

Scalar Map presentation

- -

Scalar Map is the basic type of visualization of calculation - data in Post-Pro module. This - presentation consists of the following:

- -

 

- -

- creating a 3D presentation on the basis - of a field:

- -

    - - on the whole mesh (default)

- -

    - - on group(s) of the mesh

- -

- coloring the cells of this presentation, - according the scalar or vector values applied to this cells;

- -

- creating a scalar bar representing the - correspondence  between - the scalar values of the field and the used colors.

- -

 

- -

All other types of field - presentations are based on the Scalar - Map.

- -

 

- -

To create a Scalar Map - presentation:

- -

 

- -

- Right-click on one of the time stamps - of the field in the Object browser and from the pop-up menu choose Scalar Map, or

- -

- Click on one of the time stamps of the - field in the Object browser and select from the main menu Visualization - > Scalar Map, or click icon - in the Visualization Toolbar

- -

 

- -

The following dialog box will appear:

- -

 

- -

This dialog box is equal - for all types of field presentations and it will be present as an additional - tab in all dialog boxes allowing to create the other types of presentations. - It allows to set the parameters of Scalar - range, as well as the parameters of the Scalar - Bar. You can also set these parameters as preferences which will - be used in all SALOME sessions: in the main menu select File - > Preferences > Post Pro - > Scalar Bar.    

- -

 

- -

        

- -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- - - -

 

- -

- -

 

- - - -

 

- -

After you have finished with setting these - parameters, click OK. Your presentation - with scalar bar will be immediately displayed in the viewer:

- -

 

- -

                        

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/scaling_presentations.htm b/doc/salome/gui/VISU/files/scaling_presentations.htm deleted file mode 100755 index a2139396..00000000 --- a/doc/salome/gui/VISU/files/scaling_presentations.htm +++ /dev/null @@ -1,150 +0,0 @@ - - - - - -Scaling presentations - - - - - - - - - - - - - -

Translate Presentation

- -

In SALOME - there is a feature allowing to translate presentations of submeshes and - field presentations along axes (X, Y, Z).

- -

 

- -

To translate a presentation right-click on it in the Object Browser - or 3D Viewer and select Translate Presentation. -

- -

 

- -

              

- -

 

- -

The presentation will be moved by the specified - distance along axes.

- -

To cancel all changes, click Reset - button.

- -

 

- -

3. Click Apply - button, to apply your scaling on the chosen presentation.

- -

 

- -

4. - To confirm all actions and quit Translate - Presentation dialog - box, click OK. -   

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/setting_properties_of_xy_plots.htm b/doc/salome/gui/VISU/files/setting_properties_of_xy_plots.htm deleted file mode 100755 index 567b6fc0..00000000 --- a/doc/salome/gui/VISU/files/setting_properties_of_xy_plots.htm +++ /dev/null @@ -1,176 +0,0 @@ - - - - - -Setting properties of XY plots - - - - - - - - - - - - - -

Setting properties of XY plots

- -

To define properties of XY plots:

- -

 

- -

Right-click on the background of the Plot - 2d viewer. The following menu will appear:

- -

- -

 

- -

Erase all - - hides all previously displayed curves from the viewer.

- -

Rename - - allows to rename the object currently selected in the Object Browser - (table, curve or XY plot).

- -

 

- -

Scaling - gives you the possibility to select the scale (logarithmic or linear) - for both axes

- -

 

- -

- -

 

- -

via Fit - Range option you can access to the following menu

- -

 

- -

- -

 

- -

Curve Type - gives you the possibility to select the type for your curves.

- -

 

- -

- -

 

- -

Show Legend - triggers all labels on the graph.

- -

 

- -

Settings - menu allows to adjust the representation of the graphs in the Plot - 2d viewer

- -

 

- -

Dump View - - allows to save the current graph represented in the 2D viewer in a graphic - file.

- -

 

- -

- -

 

- -

Change Background - - allows to change the background of the 2D viewer.

- - - - diff --git a/doc/salome/gui/VISU/files/shrink.htm b/doc/salome/gui/VISU/files/shrink.htm deleted file mode 100755 index c495f4a8..00000000 --- a/doc/salome/gui/VISU/files/shrink.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Shrink - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/files/stream_lines_presentation.htm b/doc/salome/gui/VISU/files/stream_lines_presentation.htm deleted file mode 100755 index 42a205e2..00000000 --- a/doc/salome/gui/VISU/files/stream_lines_presentation.htm +++ /dev/null @@ -1,253 +0,0 @@ - - - - - -Stream Lines presentation - - - - - - - - - - - - - -

Stream Lines presentation

- -

Stream Lines is a type of presentation transforming - the cells with vectors having most similar direction into lines . A streamline - can be thought of as the path that a massless particle takes in a vector - field. Streamlines are used to convey the structure of a vector field. - Usually streamlines are created to explore the most interesting features - in the field.

- -

Creating streamlines - requires specifying multiple parameters including starting - points of streamlines, direction - and other parameters to control the propagation - of the streamlines.

- -

 In - Post-Pro there is an option allowing - to specify one particular area - of the field on which the Stream Lines - presentation will be created. This option has been created for optimization - purposes: sometimes generation of a Stream Lines presentation based on - all points of a very complicated field is very time-consuming and requires - a lot of hardware resources.

- -

To bound the area on which the Stream - Lines presentation will be created. you can use another field presentation. - The points of the field located on this source presentation will serve - as starting points for generated streamlines.  

- -

 

- -

To - create a Stream Lines presentation:

- -

 

- -

- Right-click on one - of the time stamps of the field in the Object browser and from the pop-up - menu choose Stream Lines, or

- -

- Click on one of the - time stamps of the field in the Object browser and select from the main - menu Visualization > Stream Lines, - or click icon in - the Visualization Toolbar.

- -

 

- -

- -

 

- -

Stream - Lines tab allows you to set additional parameters of your - Stream Lines presentation:

- -

 

- - - -

 

- -

Scalar Bar tab allows to define - the parameters of the scalar bar displayed with this presentation (see also).

- -

 

- -

After - you have finished with setting these parameters, click OK. - Your presentation with scalar bar will be immediately displayed - in the viewer:

- -

 

- -

     

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/surface.htm b/doc/salome/gui/VISU/files/surface.htm deleted file mode 100755 index aa79d4d4..00000000 --- a/doc/salome/gui/VISU/files/surface.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Surface - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/files/surfaceframe.htm b/doc/salome/gui/VISU/files/surfaceframe.htm deleted file mode 100755 index bcfbd6d1..00000000 --- a/doc/salome/gui/VISU/files/surfaceframe.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Surfaceframe - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/files/sweeping.htm b/doc/salome/gui/VISU/files/sweeping.htm deleted file mode 100755 index 4bde6790..00000000 --- a/doc/salome/gui/VISU/files/sweeping.htm +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -Sweeping - - - - - - - - - - - - - -

Sweeping

- -

In Post-Pro there is an option allowing - to display pseudo-animation of a field presentation. For creation of this - pseudo-animation you should take one field presentation generated on the - base of ONE Time Step (for comparison, - Animation  is - generated on the base of ALL Time - Steps of a field). The frame displaying this field presentation will be - the basic. Post-Pro - automatically generates another frame displaying the initial - field presentation, which is composed of cells with minimum - acceptable values regarding the values applied to the cells of the basic presentation. It also automatically - generates a user-defined number of frames (steps), - which will display the process of transformation of the field presentation - from the initial state in the basic state. -  Sweeping - is a type of animation composed of these frames: the frame displaying - the initial field presentation - will start the animation, the frame displaying the basic - field presentation will end it.

- -

 

- -

To sweep - a field presentation:

- -

 

- -

1. Create - a field presentation.

- -

 

- -

2. Right-click on this - presentation in the Object Browser or in the viewer.

- -

 

- -

3. From the pop-up menu - select Sweep option.

- -

 

- -

-Related Topics - - -

- -

 

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/vectors_presentation.htm b/doc/salome/gui/VISU/files/vectors_presentation.htm deleted file mode 100755 index 3862f649..00000000 --- a/doc/salome/gui/VISU/files/vectors_presentation.htm +++ /dev/null @@ -1,216 +0,0 @@ - - - - - -Vectors presentation - - - - - - - - - - - - - -

Vectors Presentation

- -

Vector Field  presentation - visualizes vectors of the corresponding cells of the mesh in graphical - mode.

- -

 

- -

To create a Vector  presentation:

- -

 

- -

- Right-click on one of the time stamps of - the field in the Object browser and from the pop-up menu choose Vectors, or

- -

 

- -

- Click on one of the time stamps of the field - in the Object browser and select from the main menu Visualization - > Vectors, or click icon - in the Visualization Toolbar.

- -

 

- -

- -

 

- - - -

 

- - - -

 

- - - -

 

- -

After - you have finished with setting these parameters, click OK. - Your presentation with scalar bar will be immediately displayed - in the viewer:

- -

 

- -

          

- -

 

- -

 

- -

-Related Topics - - -

- -

 

- - - - diff --git a/doc/salome/gui/VISU/files/wireframe.htm b/doc/salome/gui/VISU/files/wireframe.htm deleted file mode 100755 index 45cf670a..00000000 --- a/doc/salome/gui/VISU/files/wireframe.htm +++ /dev/null @@ -1,86 +0,0 @@ - - - - - -Wireframe - - - - - - - - - - - - -

- - - - diff --git a/doc/salome/gui/VISU/pics/animatdef.jpg b/doc/salome/gui/VISU/pics/animatdef.jpg deleted file mode 100755 index ed9b4693..00000000 Binary files a/doc/salome/gui/VISU/pics/animatdef.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/animation.png b/doc/salome/gui/VISU/pics/animation.png deleted file mode 100755 index 85070152..00000000 Binary files a/doc/salome/gui/VISU/pics/animation.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/arrangeactors.png b/doc/salome/gui/VISU/pics/arrangeactors.png deleted file mode 100755 index 8424e602..00000000 Binary files a/doc/salome/gui/VISU/pics/arrangeactors.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/arrangeactors1.png b/doc/salome/gui/VISU/pics/arrangeactors1.png deleted file mode 100755 index 560272fa..00000000 Binary files a/doc/salome/gui/VISU/pics/arrangeactors1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/begining.jpg b/doc/salome/gui/VISU/pics/begining.jpg deleted file mode 100755 index 9c624022..00000000 Binary files a/doc/salome/gui/VISU/pics/begining.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/blue_down.jpg b/doc/salome/gui/VISU/pics/blue_down.jpg deleted file mode 100755 index 5376a154..00000000 Binary files a/doc/salome/gui/VISU/pics/blue_down.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/blue_left.jpg b/doc/salome/gui/VISU/pics/blue_left.jpg deleted file mode 100755 index ceb91efb..00000000 Binary files a/doc/salome/gui/VISU/pics/blue_left.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/blue_right.jpg b/doc/salome/gui/VISU/pics/blue_right.jpg deleted file mode 100755 index bf6f9240..00000000 Binary files a/doc/salome/gui/VISU/pics/blue_right.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/blue_up.jpg b/doc/salome/gui/VISU/pics/blue_up.jpg deleted file mode 100755 index 383840fd..00000000 Binary files a/doc/salome/gui/VISU/pics/blue_up.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/buildprogress.png b/doc/salome/gui/VISU/pics/buildprogress.png deleted file mode 100755 index 8d1b1858..00000000 Binary files a/doc/salome/gui/VISU/pics/buildprogress.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cellsel.jpg b/doc/salome/gui/VISU/pics/cellsel.jpg deleted file mode 100755 index 8e7f8d93..00000000 Binary files a/doc/salome/gui/VISU/pics/cellsel.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/clipping1.png b/doc/salome/gui/VISU/pics/clipping1.png deleted file mode 100755 index 0c606036..00000000 Binary files a/doc/salome/gui/VISU/pics/clipping1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/clipping2.png b/doc/salome/gui/VISU/pics/clipping2.png deleted file mode 100755 index ea114065..00000000 Binary files a/doc/salome/gui/VISU/pics/clipping2.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/createcurves.png b/doc/salome/gui/VISU/pics/createcurves.png deleted file mode 100755 index 82b50a06..00000000 Binary files a/doc/salome/gui/VISU/pics/createcurves.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutlines.png b/doc/salome/gui/VISU/pics/cutlines.png deleted file mode 100755 index 3db09092..00000000 Binary files a/doc/salome/gui/VISU/pics/cutlines.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutlinesicn.jpg b/doc/salome/gui/VISU/pics/cutlinesicn.jpg deleted file mode 100755 index eb43365c..00000000 Binary files a/doc/salome/gui/VISU/pics/cutlinesicn.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutlinesicon.jpg b/doc/salome/gui/VISU/pics/cutlinesicon.jpg deleted file mode 100755 index cd866735..00000000 Binary files a/doc/salome/gui/VISU/pics/cutlinesicon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutlinesprsnt.png b/doc/salome/gui/VISU/pics/cutlinesprsnt.png deleted file mode 100755 index 63b4fb04..00000000 Binary files a/doc/salome/gui/VISU/pics/cutlinesprsnt.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutplanes.png b/doc/salome/gui/VISU/pics/cutplanes.png deleted file mode 100755 index 579332ac..00000000 Binary files a/doc/salome/gui/VISU/pics/cutplanes.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/cutplpresent.png b/doc/salome/gui/VISU/pics/cutplpresent.png deleted file mode 100755 index e97ff562..00000000 Binary files a/doc/salome/gui/VISU/pics/cutplpresent.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/dataonelements1.png b/doc/salome/gui/VISU/pics/dataonelements1.png deleted file mode 100755 index b9cb2c01..00000000 Binary files a/doc/salome/gui/VISU/pics/dataonelements1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/dataonelements2.png b/doc/salome/gui/VISU/pics/dataonelements2.png deleted file mode 100755 index e532ef1d..00000000 Binary files a/doc/salome/gui/VISU/pics/dataonelements2.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/dataonelements3.png b/doc/salome/gui/VISU/pics/dataonelements3.png deleted file mode 100755 index 2ae6448d..00000000 Binary files a/doc/salome/gui/VISU/pics/dataonelements3.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/deformedshape.png b/doc/salome/gui/VISU/pics/deformedshape.png deleted file mode 100755 index 9b36a8d6..00000000 Binary files a/doc/salome/gui/VISU/pics/deformedshape.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/deformedshapesn.png b/doc/salome/gui/VISU/pics/deformedshapesn.png deleted file mode 100755 index 9af02907..00000000 Binary files a/doc/salome/gui/VISU/pics/deformedshapesn.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/defshapeicon.jpg b/doc/salome/gui/VISU/pics/defshapeicon.jpg deleted file mode 100755 index 5d59f160..00000000 Binary files a/doc/salome/gui/VISU/pics/defshapeicon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/dumpviewtofile.png b/doc/salome/gui/VISU/pics/dumpviewtofile.png deleted file mode 100755 index d67e2c0a..00000000 Binary files a/doc/salome/gui/VISU/pics/dumpviewtofile.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/editplot2dpresentation.png b/doc/salome/gui/VISU/pics/editplot2dpresentation.png deleted file mode 100755 index 43ac17d4..00000000 Binary files a/doc/salome/gui/VISU/pics/editplot2dpresentation.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/end.jpg b/doc/salome/gui/VISU/pics/end.jpg deleted file mode 100755 index 3aef5d1b..00000000 Binary files a/doc/salome/gui/VISU/pics/end.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/exporttable.png b/doc/salome/gui/VISU/pics/exporttable.png deleted file mode 100755 index 7b3a42e7..00000000 Binary files a/doc/salome/gui/VISU/pics/exporttable.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/fitdatarange.png b/doc/salome/gui/VISU/pics/fitdatarange.png deleted file mode 100755 index be4c24df..00000000 Binary files a/doc/salome/gui/VISU/pics/fitdatarange.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/gpp2.png b/doc/salome/gui/VISU/pics/gpp2.png deleted file mode 100755 index 1562d03f..00000000 Binary files a/doc/salome/gui/VISU/pics/gpp2.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/gpp3.png b/doc/salome/gui/VISU/pics/gpp3.png deleted file mode 100755 index 128e22bb..00000000 Binary files a/doc/salome/gui/VISU/pics/gpp3.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/gpp6.png b/doc/salome/gui/VISU/pics/gpp6.png deleted file mode 100755 index 9408b33c..00000000 Binary files a/doc/salome/gui/VISU/pics/gpp6.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/graduatedaxes1.png b/doc/salome/gui/VISU/pics/graduatedaxes1.png deleted file mode 100755 index cf021ba4..00000000 Binary files a/doc/salome/gui/VISU/pics/graduatedaxes1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image100.gif b/doc/salome/gui/VISU/pics/image100.gif deleted file mode 100755 index c44d68ff..00000000 Binary files a/doc/salome/gui/VISU/pics/image100.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image102.gif b/doc/salome/gui/VISU/pics/image102.gif deleted file mode 100755 index 4a4900fe..00000000 Binary files a/doc/salome/gui/VISU/pics/image102.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image103.gif b/doc/salome/gui/VISU/pics/image103.gif deleted file mode 100755 index 147612dc..00000000 Binary files a/doc/salome/gui/VISU/pics/image103.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image104.gif b/doc/salome/gui/VISU/pics/image104.gif deleted file mode 100755 index 584b367e..00000000 Binary files a/doc/salome/gui/VISU/pics/image104.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image105.gif b/doc/salome/gui/VISU/pics/image105.gif deleted file mode 100755 index 9d747861..00000000 Binary files a/doc/salome/gui/VISU/pics/image105.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image109.gif b/doc/salome/gui/VISU/pics/image109.gif deleted file mode 100755 index 5dbba464..00000000 Binary files a/doc/salome/gui/VISU/pics/image109.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image117.gif b/doc/salome/gui/VISU/pics/image117.gif deleted file mode 100755 index c0e2715f..00000000 Binary files a/doc/salome/gui/VISU/pics/image117.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image157.gif b/doc/salome/gui/VISU/pics/image157.gif deleted file mode 100644 index 2f66e05e..00000000 Binary files a/doc/salome/gui/VISU/pics/image157.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image20.png b/doc/salome/gui/VISU/pics/image20.png deleted file mode 100755 index 2658973f..00000000 Binary files a/doc/salome/gui/VISU/pics/image20.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image21.png b/doc/salome/gui/VISU/pics/image21.png deleted file mode 100755 index 6d7f7151..00000000 Binary files a/doc/salome/gui/VISU/pics/image21.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image30.gif b/doc/salome/gui/VISU/pics/image30.gif deleted file mode 100755 index f78b7c2b..00000000 Binary files a/doc/salome/gui/VISU/pics/image30.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image39.gif b/doc/salome/gui/VISU/pics/image39.gif deleted file mode 100755 index 0a7acc21..00000000 Binary files a/doc/salome/gui/VISU/pics/image39.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image46.gif b/doc/salome/gui/VISU/pics/image46.gif deleted file mode 100755 index 0fe311c4..00000000 Binary files a/doc/salome/gui/VISU/pics/image46.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image47.gif b/doc/salome/gui/VISU/pics/image47.gif deleted file mode 100755 index 57011e06..00000000 Binary files a/doc/salome/gui/VISU/pics/image47.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image48.gif b/doc/salome/gui/VISU/pics/image48.gif deleted file mode 100755 index 4733090c..00000000 Binary files a/doc/salome/gui/VISU/pics/image48.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image49.gif b/doc/salome/gui/VISU/pics/image49.gif deleted file mode 100755 index 94df6479..00000000 Binary files a/doc/salome/gui/VISU/pics/image49.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image50.gif b/doc/salome/gui/VISU/pics/image50.gif deleted file mode 100755 index d86bc15f..00000000 Binary files a/doc/salome/gui/VISU/pics/image50.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image51.gif b/doc/salome/gui/VISU/pics/image51.gif deleted file mode 100755 index e568a49d..00000000 Binary files a/doc/salome/gui/VISU/pics/image51.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image52.gif b/doc/salome/gui/VISU/pics/image52.gif deleted file mode 100755 index d3764072..00000000 Binary files a/doc/salome/gui/VISU/pics/image52.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image53.gif b/doc/salome/gui/VISU/pics/image53.gif deleted file mode 100755 index 139f9ee0..00000000 Binary files a/doc/salome/gui/VISU/pics/image53.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image54.gif b/doc/salome/gui/VISU/pics/image54.gif deleted file mode 100755 index 7391fddd..00000000 Binary files a/doc/salome/gui/VISU/pics/image54.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image55.gif b/doc/salome/gui/VISU/pics/image55.gif deleted file mode 100755 index f11da801..00000000 Binary files a/doc/salome/gui/VISU/pics/image55.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image69.gif b/doc/salome/gui/VISU/pics/image69.gif deleted file mode 100755 index 36f57602..00000000 Binary files a/doc/salome/gui/VISU/pics/image69.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image74.gif b/doc/salome/gui/VISU/pics/image74.gif deleted file mode 100755 index 85713fae..00000000 Binary files a/doc/salome/gui/VISU/pics/image74.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image81.gif b/doc/salome/gui/VISU/pics/image81.gif deleted file mode 100755 index 3473ad94..00000000 Binary files a/doc/salome/gui/VISU/pics/image81.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image82.gif b/doc/salome/gui/VISU/pics/image82.gif deleted file mode 100755 index 0d3b25ef..00000000 Binary files a/doc/salome/gui/VISU/pics/image82.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image83.gif b/doc/salome/gui/VISU/pics/image83.gif deleted file mode 100755 index a40211e8..00000000 Binary files a/doc/salome/gui/VISU/pics/image83.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image84.gif b/doc/salome/gui/VISU/pics/image84.gif deleted file mode 100755 index 87e1105c..00000000 Binary files a/doc/salome/gui/VISU/pics/image84.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image87.gif b/doc/salome/gui/VISU/pics/image87.gif deleted file mode 100755 index 61e26b23..00000000 Binary files a/doc/salome/gui/VISU/pics/image87.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image88.gif b/doc/salome/gui/VISU/pics/image88.gif deleted file mode 100755 index 16cdbf73..00000000 Binary files a/doc/salome/gui/VISU/pics/image88.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image89.gif b/doc/salome/gui/VISU/pics/image89.gif deleted file mode 100755 index 373a6c02..00000000 Binary files a/doc/salome/gui/VISU/pics/image89.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image90.gif b/doc/salome/gui/VISU/pics/image90.gif deleted file mode 100755 index 3507814b..00000000 Binary files a/doc/salome/gui/VISU/pics/image90.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image91.gif b/doc/salome/gui/VISU/pics/image91.gif deleted file mode 100755 index 9e93c1c7..00000000 Binary files a/doc/salome/gui/VISU/pics/image91.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image96.gif b/doc/salome/gui/VISU/pics/image96.gif deleted file mode 100755 index 4580d5b5..00000000 Binary files a/doc/salome/gui/VISU/pics/image96.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image97.gif b/doc/salome/gui/VISU/pics/image97.gif deleted file mode 100755 index 1d78de1b..00000000 Binary files a/doc/salome/gui/VISU/pics/image97.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image98.gif b/doc/salome/gui/VISU/pics/image98.gif deleted file mode 100755 index 6519dbb6..00000000 Binary files a/doc/salome/gui/VISU/pics/image98.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/image99.gif b/doc/salome/gui/VISU/pics/image99.gif deleted file mode 100755 index 3711be81..00000000 Binary files a/doc/salome/gui/VISU/pics/image99.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/importfromfile.png b/doc/salome/gui/VISU/pics/importfromfile.png deleted file mode 100755 index af51e718..00000000 Binary files a/doc/salome/gui/VISU/pics/importfromfile.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/importtablefromfile.png b/doc/salome/gui/VISU/pics/importtablefromfile.png deleted file mode 100755 index 7cd6a28d..00000000 Binary files a/doc/salome/gui/VISU/pics/importtablefromfile.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/iso.png b/doc/salome/gui/VISU/pics/iso.png deleted file mode 100755 index 880ccb13..00000000 Binary files a/doc/salome/gui/VISU/pics/iso.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/isosurf.jpg b/doc/salome/gui/VISU/pics/isosurf.jpg deleted file mode 100755 index 88d5ac72..00000000 Binary files a/doc/salome/gui/VISU/pics/isosurf.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/isosurfaces.png b/doc/salome/gui/VISU/pics/isosurfaces.png deleted file mode 100755 index f431d63e..00000000 Binary files a/doc/salome/gui/VISU/pics/isosurfaces.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/neo-transparency.png b/doc/salome/gui/VISU/pics/neo-transparency.png deleted file mode 100755 index ec1fb7f7..00000000 Binary files a/doc/salome/gui/VISU/pics/neo-transparency.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/next.jpg b/doc/salome/gui/VISU/pics/next.jpg deleted file mode 100755 index 958ff001..00000000 Binary files a/doc/salome/gui/VISU/pics/next.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/picking.png b/doc/salome/gui/VISU/pics/picking.png deleted file mode 100755 index cea1a56c..00000000 Binary files a/doc/salome/gui/VISU/pics/picking.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/planes.png b/doc/salome/gui/VISU/pics/planes.png deleted file mode 100755 index 23fdc942..00000000 Binary files a/doc/salome/gui/VISU/pics/planes.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/plot3d-example.png b/doc/salome/gui/VISU/pics/plot3d-example.png deleted file mode 100755 index e2711dd0..00000000 Binary files a/doc/salome/gui/VISU/pics/plot3d-example.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/plot3d.png b/doc/salome/gui/VISU/pics/plot3d.png deleted file mode 100755 index f04ce94c..00000000 Binary files a/doc/salome/gui/VISU/pics/plot3d.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/points.jpg b/doc/salome/gui/VISU/pics/points.jpg deleted file mode 100755 index 6164f769..00000000 Binary files a/doc/salome/gui/VISU/pics/points.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/previous.jpg b/doc/salome/gui/VISU/pics/previous.jpg deleted file mode 100755 index 4b4106b8..00000000 Binary files a/doc/salome/gui/VISU/pics/previous.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/recording.png b/doc/salome/gui/VISU/pics/recording.png deleted file mode 100755 index 272386ae..00000000 Binary files a/doc/salome/gui/VISU/pics/recording.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/recordingsaveas.png b/doc/salome/gui/VISU/pics/recordingsaveas.png deleted file mode 100755 index 28dac73c..00000000 Binary files a/doc/salome/gui/VISU/pics/recordingsaveas.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/rename.png b/doc/salome/gui/VISU/pics/rename.png deleted file mode 100755 index c6bc6155..00000000 Binary files a/doc/salome/gui/VISU/pics/rename.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/run.jpg b/doc/salome/gui/VISU/pics/run.jpg deleted file mode 100755 index d8805928..00000000 Binary files a/doc/salome/gui/VISU/pics/run.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/scalarbarproperties.png b/doc/salome/gui/VISU/pics/scalarbarproperties.png deleted file mode 100755 index db018aec..00000000 Binary files a/doc/salome/gui/VISU/pics/scalarbarproperties.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/scalarmapicon.jpg b/doc/salome/gui/VISU/pics/scalarmapicon.jpg deleted file mode 100755 index fff992d5..00000000 Binary files a/doc/salome/gui/VISU/pics/scalarmapicon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/scalarrangesn.png b/doc/salome/gui/VISU/pics/scalarrangesn.png deleted file mode 100755 index c4cb6817..00000000 Binary files a/doc/salome/gui/VISU/pics/scalarrangesn.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/set_rotation_point_dialog1.png b/doc/salome/gui/VISU/pics/set_rotation_point_dialog1.png deleted file mode 100644 index bdab73b7..00000000 Binary files a/doc/salome/gui/VISU/pics/set_rotation_point_dialog1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/set_rotation_point_dialog2.png b/doc/salome/gui/VISU/pics/set_rotation_point_dialog2.png deleted file mode 100644 index 7f3696a5..00000000 Binary files a/doc/salome/gui/VISU/pics/set_rotation_point_dialog2.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/setupanimation.png b/doc/salome/gui/VISU/pics/setupanimation.png deleted file mode 100755 index a7121fd4..00000000 Binary files a/doc/salome/gui/VISU/pics/setupanimation.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/setupplot2d.png b/doc/salome/gui/VISU/pics/setupplot2d.png deleted file mode 100755 index 4d8ac433..00000000 Binary files a/doc/salome/gui/VISU/pics/setupplot2d.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/shrink.jpg b/doc/salome/gui/VISU/pics/shrink.jpg deleted file mode 100755 index 0985b855..00000000 Binary files a/doc/salome/gui/VISU/pics/shrink.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/smds-example.png b/doc/salome/gui/VISU/pics/smds-example.png deleted file mode 100755 index 84d3a3d9..00000000 Binary files a/doc/salome/gui/VISU/pics/smds-example.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/smds-example1.png b/doc/salome/gui/VISU/pics/smds-example1.png deleted file mode 100755 index 8085fea8..00000000 Binary files a/doc/salome/gui/VISU/pics/smds-example1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/smds1.png b/doc/salome/gui/VISU/pics/smds1.png deleted file mode 100755 index f74008d4..00000000 Binary files a/doc/salome/gui/VISU/pics/smds1.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/snapfgf.png b/doc/salome/gui/VISU/pics/snapfgf.png deleted file mode 100755 index fc8803c8..00000000 Binary files a/doc/salome/gui/VISU/pics/snapfgf.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/speed.jpg b/doc/salome/gui/VISU/pics/speed.jpg deleted file mode 100755 index 3076f301..00000000 Binary files a/doc/salome/gui/VISU/pics/speed.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/spheroid.png b/doc/salome/gui/VISU/pics/spheroid.png deleted file mode 100755 index 162700b7..00000000 Binary files a/doc/salome/gui/VISU/pics/spheroid.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/streamlines.png b/doc/salome/gui/VISU/pics/streamlines.png deleted file mode 100755 index 1cdd9fe9..00000000 Binary files a/doc/salome/gui/VISU/pics/streamlines.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/streamlinesicon.jpg b/doc/salome/gui/VISU/pics/streamlinesicon.jpg deleted file mode 100755 index 3d90087e..00000000 Binary files a/doc/salome/gui/VISU/pics/streamlinesicon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/streamlinesprsnt.png b/doc/salome/gui/VISU/pics/streamlinesprsnt.png deleted file mode 100755 index b04a0022..00000000 Binary files a/doc/salome/gui/VISU/pics/streamlinesprsnt.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/surface.jpg b/doc/salome/gui/VISU/pics/surface.jpg deleted file mode 100755 index 6f9a0240..00000000 Binary files a/doc/salome/gui/VISU/pics/surface.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/textproperty.png b/doc/salome/gui/VISU/pics/textproperty.png deleted file mode 100755 index 565ec31d..00000000 Binary files a/doc/salome/gui/VISU/pics/textproperty.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/translatepres.png b/doc/salome/gui/VISU/pics/translatepres.png deleted file mode 100755 index f68ac955..00000000 Binary files a/doc/salome/gui/VISU/pics/translatepres.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/vecticon.jpg b/doc/salome/gui/VISU/pics/vecticon.jpg deleted file mode 100755 index 40c36af4..00000000 Binary files a/doc/salome/gui/VISU/pics/vecticon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/vectorfield.png b/doc/salome/gui/VISU/pics/vectorfield.png deleted file mode 100755 index 1c6de4d7..00000000 Binary files a/doc/salome/gui/VISU/pics/vectorfield.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/vectorsprsnt.png b/doc/salome/gui/VISU/pics/vectorsprsnt.png deleted file mode 100755 index 698a1e8c..00000000 Binary files a/doc/salome/gui/VISU/pics/vectorsprsnt.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/view_rotation_point.png b/doc/salome/gui/VISU/pics/view_rotation_point.png deleted file mode 100644 index 7fe8f838..00000000 Binary files a/doc/salome/gui/VISU/pics/view_rotation_point.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/viewsettings.png b/doc/salome/gui/VISU/pics/viewsettings.png deleted file mode 100755 index 79dcc495..00000000 Binary files a/doc/salome/gui/VISU/pics/viewsettings.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/viewtable.png b/doc/salome/gui/VISU/pics/viewtable.png deleted file mode 100755 index 8aca30d4..00000000 Binary files a/doc/salome/gui/VISU/pics/viewtable.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/visufullscreen.png b/doc/salome/gui/VISU/pics/visufullscreen.png deleted file mode 100755 index cc98df07..00000000 Binary files a/doc/salome/gui/VISU/pics/visufullscreen.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/visuicon.jpg b/doc/salome/gui/VISU/pics/visuicon.jpg deleted file mode 100755 index 8489eef2..00000000 Binary files a/doc/salome/gui/VISU/pics/visuicon.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/warning.png b/doc/salome/gui/VISU/pics/warning.png deleted file mode 100755 index 55e06d36..00000000 Binary files a/doc/salome/gui/VISU/pics/warning.png and /dev/null differ diff --git a/doc/salome/gui/VISU/pics/wireframe.jpg b/doc/salome/gui/VISU/pics/wireframe.jpg deleted file mode 100755 index aa84b51c..00000000 Binary files a/doc/salome/gui/VISU/pics/wireframe.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html deleted file mode 100644 index 25789b67..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - Main Page - - - - -  - - - -

idl/VISU_Gen.idl File Reference

#include "SALOME_Exception.idl"
-#include "SALOME_GenericObj.idl"
-#include "SALOME_Component.idl"
-#include "SALOMEDS.idl"
-#include "SALOMEDS_Attributes.idl"
-#include "MED.idl"
- -

-Include dependency graph for VISU_Gen.idl:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Namespaces

namespace  VISU

Data Structures

interface  VISU.Base
interface  VISU.RemovableObject
 Removable object interface. More...
interface  VISU.PrsObject
 Presentable object interface. More...
interface  VISU.Table
 Table representation interface More...
interface  VISU.Curve
 Interface of curve representation. More...
interface  VISU.Container
 Container presentable object interface More...
interface  VISU.Prs3d
 3D presentation interface More...
interface  VISU.Mesh
 Interface of the mesh. More...
interface  VISU.ColoredPrs3d
 Basic Interface for the Colored 3D Presentations. More...
interface  VISU.ColoredPrs3dHolder
 ColoredPrs3dHolder interface. Interface of 3d presentation's holder, which represents colored 3d presentations, created on fields. It is publishing in the object browser in a separate folder and can be controled by viewer's slider. More...
struct  VISU.ColoredPrs3dHolder.BasicInput
struct  VISU.ColoredPrs3dHolder.TimeStampInfo
interface  VISU.ColoredPrs3dCache
 ColoredPrs3dCache interface. This interface is responsible for memory management of 3d presentations. One cache corresponds to one study. More...
interface  VISU.ScalarMap
 Interface of the Scalar Map. More...
interface  VISU.GaussPoints
 Gauss Points presentation interface. More...
interface  VISU.DeformedShape
 Deformed shape presentation interface. More...
interface  VISU.ScalarMapOnDeformedShape
 Deformed shape and Scalar Map presentation interface. More...
interface  VISU.Plot3D
 Plot3D interface. More...
interface  VISU.CutPlanes
 Cut planes interface. More...
interface  VISU.CutLines
 Cut lines presentation. More...
interface  VISU.StreamLines
 Interface of the stream lines representation. More...
interface  VISU.IsoSurfaces
 Interface of the isometric surface presentation. More...
interface  VISU.Vectors
 Interface of the vector presentation. More...
interface  VISU.Animation
 Animation class More...
interface  VISU.Result
 Interface Result. More...
interface  VISU.VISU_Gen
 VISU_Gen interface More...
interface  VISU.View
 View interface More...
interface  VISU.View3D
 3D view interface More...
interface  VISU.TableView
 Interface of the Table view. More...
interface  VISU.XYPlot
 Interface of the 2D plot view. More...
interface  VISU.ViewManager
 Interface of the ViewManager. More...

Typedefs

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

Enumerations

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

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. - - - diff --git a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl__incl.jpg b/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl__incl.jpg deleted file mode 100644 index b39f3e1a..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/VISU__Gen_8idl__incl.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/doxygen.css b/doc/salome/gui/VISU/visugenidl_doc/doxygen.css deleted file mode 100644 index dc9da522..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/doxygen.css +++ /dev/null @@ -1,218 +0,0 @@ -H1 { - text-align: center; - font-family: Geneva, Arial, Helvetica, sans-serif; -} -H2 { - font-family: Geneva, Arial, Helvetica, sans-serif; -} -CAPTION { font-weight: bold } -DIV.qindex { - width: 100%; - background-color: #eeeeff; - border: 1px solid #B0B0B0; - text-align: center; - margin: 2px; - padding: 2px; - line-height: 120%; -} -A.qindex { - text-decoration: none; - font-weight: bold; - color: #1A419D; - padding: 2px; -} -A.qindex:visited { - text-decoration: none; - font-weight: bold; - color: #1A419D - padding: 2px; -} -A.qindex:hover { - text-decoration: none; - background-color: #ddddff; - padding: 2px; -} -A.qindexHL { - text-decoration: none; - font-weight: bold; - background-color: #6666cc; - color: #ffffff; - padding: 2px 6px; - border: 1px double #9295C2; -} -A.qindexHL:hover { - text-decoration: none; - background-color: #6666cc; - color: #ffffff; - padding: 2px 6px; -} -A.qindexHL:visited { text-decoration: none; background-color: #6666cc; color: #ffffff } -A.el { text-decoration: none; font-weight: bold } -A.elRef { font-weight: bold } -A.code { text-decoration: none; font-weight: normal; color: #1A419D} -A.codeRef { font-weight: normal; color: #1A419D} -A:hover { text-decoration: none; background-color: #f2f2ff } -DL.el { margin-left: -1cm } -PRE.fragment { - border: 1px solid #CCCCCC; - background-color: #f5f5f5; - margin-top: 4px; - margin-bottom: 4px; - margin-left: 2px; - margin-right: 8px; - padding-left: 6px; - padding-right: 6px; - padding-top: 4px; - padding-bottom: 4px; -} -DIV.fragment { - border: 1px solid #CCCCCC; - background-color: #f5f5f5; - padding: 6px; -} -DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px } -TD.md { background-color: #F4F4FB; font-weight: bold; } -TD.mdname1 { background-color: #F4F4FB; font-weight: bold; color: #602020; } -TD.mdname { background-color: #F4F4FB; font-weight: bold; color: #602020; width: 600px; } -DIV.groupHeader { - margin-left: 16px; - margin-top: 12px; - margin-bottom: 6px; - font-weight: bold; - font-family: Geneva, Arial, Helvetica, sans-serif; -} -DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller } -BODY { - background: white; - color: black; - margin-right: 20px; - margin-left: 20px; -} -TD.indexkey { - background-color: #eeeeff; - font-weight: bold; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px; - border: 1px solid #CCCCCC; -} -TD.indexvalue { - background-color: #eeeeff; - font-style: italic; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px; - border: 1px solid #CCCCCC; -} -TR.memlist { - background-color: #f0f0f0; -} -P.formulaDsp { text-align: center; } -IMG.formulaDsp { } -IMG.formulaInl { vertical-align: middle; } -SPAN.keyword { color: #008000 } -SPAN.keywordtype { color: #604020 } -SPAN.keywordflow { color: #e08000 } -SPAN.comment { color: #800000 } -SPAN.preprocessor { color: #806020 } -SPAN.stringliteral { color: #002080 } -SPAN.charliteral { color: #008080 } -.mdTable { - border: 1px solid #868686; - background-color: #F4F4FB; -} -.mdRow { - padding: 8px 10px; -} -.mdescLeft { - font-size: smaller; - font-style: italic; - background-color: #FAFAFA; - padding-left: 8px; - border-top: 1px none #E0E0E0; - border-right: 1px none #E0E0E0; - border-bottom: 1px none #E0E0E0; - border-left: 1px none #E0E0E0; - margin: 0px; -} -.mdescRight { - font-size: smaller; - font-style: italic; - background-color: #FAFAFA; - padding-left: 4px; - border-top: 1px none #E0E0E0; - border-right: 1px none #E0E0E0; - border-bottom: 1px none #E0E0E0; - border-left: 1px none #E0E0E0; - margin: 0px; - padding-bottom: 0px; - padding-right: 8px; -} -.memItemLeft { - padding: 1px 0px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-style: solid; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-family: Geneva, Arial, Helvetica, sans-serif; - font-size: 12px; -} -.memItemRight { - padding: 1px 0px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-style: solid; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-family: Geneva, Arial, Helvetica, sans-serif; - font-size: 13px; -} -.search { color: #003399; - font-weight: bold; -} -FORM.search { - margin-bottom: 0px; - margin-top: 0px; -} -INPUT.search { font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #eeeeff; -} -TD.tiny { font-size: 75%; -} -a { - color: #252E78; -} -a:visited { - color: #3D2185; -} diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html deleted file mode 100644 index 4e0aa360..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation.html +++ /dev/null @@ -1,1115 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Animation Interface Reference

Animation class -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Animation:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 PARALLEL
 SUCCCESSIVE
enum  AnimationMode { PARALLEL, -SUCCCESSIVE - }

Public Member Functions

boolean addField (in SALOMEDS::SObject theObject)
void clearFields ()
void generatePresentations (in long theFieldNum)
boolean generateFrames ()
void clearView ()
long getNbFields ()
long getNbFrames ()
boolean isRunning ()
long getCurrentFrame ()
ColoredPrs3d getPresentation (in long theField, in long theFrame)
void setPresentationType (in long theFieldNum, in VISUType theType)
VISUType getPresentationType (in long theFieldNum)
void setSpeed (in long theSpeed)
long getSpeed ()
boolean isProportional ()
void setAnimationRange (in double theMin, in double theMax)
double getMinRange ()
double getMaxRange ()
boolean isRangeDefined ()
void dumpTo (in string thePath)
string setDumpFormat (in string theFormat)
boolean isCycling ()
double getMinTime ()
double getMaxTime ()
void setProportional (in boolean theProp)
void setCycling (in boolean theCycle)
boolean isCleaningMemoryAtEachFrame ()
void setCleaningMemoryAtEachFrame (in boolean theCycle)
SALOMEDS::SObject publishInStudy ()
void saveAnimation ()
void restoreFromStudy (in SALOMEDS::SObject theSObj)
boolean isSavedInStudy ()
void setAnimationMode (in AnimationMode theMode)
AnimationMode getAnimationMode ()
void ApplyProperties (in long theFieldNum, in ColoredPrs3d thePrs)
IdType GetID ()
VISUType GetType ()
Playback of an animation:
void startAnimation ()
void stopAnimation ()
void nextFrame ()
void prevFrame ()
void firstFrame ()
void lastFrame ()
void gotoFrame (in long theFrame)
-

Detailed Description

-This class provides a set of methods used for:
- -
Note:

-Field represents the results of calculations (it can be scalar or vector values), grouped together under one physical concept.
-Time stamp represents a subfield: the results of calculations are taken in one definite moment.
- -

-


Member Enumeration Documentation

- -
- -
- -

-This enumeration contains a set of available animation modes.

Enumerator:
- - - -
PARALLEL  -parallel mode of animation.
SUCCCESSIVE  -succcessive mode of animation.
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - -
boolean VISU.Animation.addField (in SALOMEDS::SObject  theObject  ) 
-
-
- -

-Defines the field which will be used as a base for generation of the animation.

Parameters:
- - -
theObject The SObject corresponding to the field.
-
- -
-

- -

-
- - - - - - - - -
void VISU.Animation.clearFields (  ) 
-
-
- -

-Remove all fields from Animation object. -

-

- -

-
- - - - - - - - - -
void VISU.Animation.generatePresentations (in long  theFieldNum  ) 
-
-
- -

-Generates presentations on the basis of the field.

Parameters:
- - -
theFieldNum The number of the field, which will be used as the basis for construction of the presentation.
-
- -
-

- -

-
- - - - - - - - -
boolean VISU.Animation.generateFrames (  ) 
-
-
- -

-Generates a set of frames from the created by the method generatePresentations3D presentations. A sequence of these frames will be transformed into an animation.

Returns:
True, if the frames have been successfully generated.
- -
-

- -

-
- - - - - - - - -
void VISU.Animation.clearView (  ) 
-
-
- -

-Clears the view before starting an animation. -

-

- -

-
- - - - - - - - -
void VISU.Animation.startAnimation (  ) 
-
-
- -

-Starts an animation. -

-

- -

-
- - - - - - - - -
void VISU.Animation.stopAnimation (  ) 
-
-
- -

-Stops an animation. -

-

- -

-
- - - - - - - - -
void VISU.Animation.nextFrame (  ) 
-
-
- -

-Forwards to the next frame. -

-

- -

-
- - - - - - - - -
void VISU.Animation.prevFrame (  ) 
-
-
- -

-Returns to the previous frame. -

-

- -

-
- - - - - - - - -
void VISU.Animation.firstFrame (  ) 
-
-
- -

-Returns to the first frame of the animation. -

-

- -

-
- - - - - - - - -
void VISU.Animation.lastFrame (  ) 
-
-
- -

-Forwards to the last frame of the animation. -

-

- -

-
- - - - - - - - - -
void VISU.Animation.gotoFrame (in long  theFrame  ) 
-
-
- -

-Passes to a definite frame of the animation.

Parameters:
- - -
theFrame A long value defining the number of the frame.
-
- -
-

- -

-
- - - - - - - - -
long VISU.Animation.getNbFields (  ) 
-
-
- -

-Gets the number of time stamps (subfields) contained in the given field. -

-

- -

-
- - - - - - - - -
long VISU.Animation.getNbFrames (  ) 
-
-
- -

-Gets the number of generated frames -

-

- -

-
- - - - - - - - -
boolean VISU.Animation.isRunning (  ) 
-
-
- -

-Returns True, if the animation is currently running. -

-

- -

-
- - - - - - - - -
long VISU.Animation.getCurrentFrame (  ) 
-
-
- -

-Returns the number of the current frame. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
ColoredPrs3d VISU.Animation.getPresentation (in long  theField,
in long  theFrame 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Animation.setPresentationType (in long  theFieldNum,
in VISUType  theType 
)
-
-
- -

-Sets the type of presentation (vectors, deformed shape etc.) which will be generated by the method generatePresentations. -

-

- -

-
- - - - - - - - - -
VISUType VISU.Animation.getPresentationType (in long  theFieldNum  ) 
-
-
- -

-Gets the type of presentation (vectors, deformed shape etc.) which will be generated by the method generatePresentations. -

-

- -

-
- - - - - - - - - -
void VISU.Animation.setSpeed (in long  theSpeed  ) 
-
-
- -

-Sets the speed of the animation.

Parameters:
- - -
theSpeed The speed of the animation. The value varies from 1 to 99.
-
- -
-

- -

-
- - - - - - - - -
long VISU.Animation.getSpeed (  ) 
-
-
- -

-Gets the speed of the animation. -

-

- -

-
- - - - - - - - -
boolean VISU.Animation.isProportional (  ) 
-
-
- -

-Ruturns True, if playback of the animation is proportional. This option allows to render your animation with proportional periods of time between every frame (not depending on the time stamps). -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Animation.setAnimationRange (in double  theMin,
in double  theMax 
)
-
-
- -

-Sets the range of the animation. The range is defined on the basis of the time stamps of the field which have been used for generation of the animation. This method allows to bound the range of generated frames. If this method is not used, the animation will be generated on the basis of all time stamps contained in the field.

Parameters:
- - - -
theMin The value of the first time stamp which will be used for generation of the animation.
theMax The value of the last time stamp which will be used for generation of the animation.
-
- -
-

- -

-
- - - - - - - - -
double VISU.Animation.getMinRange (  ) 
-
-
- -

-Gets the number of the first time stamp which will be used for generation of the animation. -

-

- -

-
- - - - - - - - -
double VISU.Animation.getMaxRange (  ) 
-
-
- -

-Gets the number of the last time stamp which will be used for generation of the animation. -

-

- -

-
- - - - - - - - -
boolean VISU.Animation.isRangeDefined (  ) 
-
-
- -

-Returns True if the range of the animation has been defined by the method setAnimationRange. Otherwise the animation will be generated on the basis of all time stamps contained in the field. -

-

- -

-
- - - - - - - - - -
void VISU.Animation.dumpTo (in string  thePath  ) 
-
-
- -

-Saves all the frames composing the animation into a definite directory. Pictures format is set with method setDumpFormat().

Parameters:
- - -
thePath The directory where all the frames will be saved.
-
- -
-

- -

-
- - - - - - - - - -
string VISU.Animation.setDumpFormat (in string  theFormat  ) 
-
-
- -

-Set format for saving all the frames composing the animation.

Parameters:
- - -
theFormat The format for saving pictures. For available formats see QImageIO documentation (Qt). If specified format is not available, default format will be used. Default format is JPEG or first of supported, if JPEG is not available.
-
-
Returns:
Really set format. Differ from theFormat if theFormat is not available.
- -
-

- -

-
- - - - - - - - -
boolean VISU.Animation.isCycling (  ) 
-
-
- -

-Returns True, if the playback of the animation is cycling. -

-

- -

-
- - - - - - - - -
double VISU.Animation.getMinTime (  ) 
-
-
- -

-Gets the first time stamp of the field defined at the input of the animation.

Note:
This method is used if animation range is NOT defined.
- -
-

- -

-
- - - - - - - - -
double VISU.Animation.getMaxTime (  ) 
-
-
- -

-Gets the last time stamp of the field defined at the input of the animation.

Note:
This method is used if animation range is NOT defined.
- -
-

- -

-
- - - - - - - - - -
void VISU.Animation.setProportional (in boolean  theProp  ) 
-
-
- -

-Sets proprtional playback of the animation. This option allows to render your animation with proportional periods of time between every frame (not depending on the time stamps).

Parameters:
- - -
theProp If this boolean parameter is True, playback of your animation will be set as proportional.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.Animation.setCycling (in boolean  theCycle  ) 
-
-
- -

-Sets cycling playback of the animation. The number of cycles can be infinite, untill you use startAnimation method.

Parameters:
- - -
theCycle If this boolean parameter is True, playback of your animation will be set as cycling.
-
- -
-

- -

-
- - - - - - - - -
boolean VISU.Animation.isCleaningMemoryAtEachFrame (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.Animation.setCleaningMemoryAtEachFrame (in boolean  theCycle  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
SALOMEDS::SObject VISU.Animation.publishInStudy (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.Animation.saveAnimation (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.Animation.restoreFromStudy (in SALOMEDS::SObject  theSObj  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
boolean VISU.Animation.isSavedInStudy (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.Animation.setAnimationMode (in AnimationMode  theMode  ) 
-
-
- -

-Sets the animation mode.

Parameters:
- - -
theMode The value of this parameter is taken from the AnimationMode enumeration.
-
- -
-

- -

-
- - - - - - - - -
AnimationMode VISU.Animation.getAnimationMode (  ) 
-
-
- -

-Gets the animation mode. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Animation.ApplyProperties (in long  theFieldNum,
in ColoredPrs3d  thePrs 
)
-
-
- -

-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. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation__inherit__graph.jpg deleted file mode 100644 index 83cfd510..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Animation__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html deleted file mode 100644 index ddc5521c..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Base Interface Reference

import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Base:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - -

Public Member Functions

IdType GetID ()
VISUType GetType ()
-

Member Function Documentation

- -
-
- - - - - - - - -
IdType VISU.Base.GetID (  ) 
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  ) 
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base__inherit__graph.jpg deleted file mode 100644 index 0a3207aa..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Base__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html deleted file mode 100644 index 0ec36308..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d.html +++ /dev/null @@ -1,749 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ColoredPrs3d Interface Reference

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

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ColoredPrs3d:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface is responsable for coloring of 3D field presentations according the scalar values applied to different cells. As well it contains presentation parameters of the scalar bar. The scalar bar is displayed along with each colored field presentation and serves for consulting the correspondance between colors and data values. -

-


Member Enumeration Documentation

- -
- -
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  ) 
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  ) 
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  ) 
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  ) 
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  ) 
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  ) 
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  ) 
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
)
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  ) 
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  ) 
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
)
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  ) 
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  ) 
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  ) 
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  ) 
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  ) 
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  ) 
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  ) 
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  ) 
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  ) 
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  ) 
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache.html deleted file mode 100644 index 9730844a..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache.html +++ /dev/null @@ -1,344 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ColoredPrs3dCache Interface Reference

ColoredPrs3dCache interface. This interface is responsible for memory management of 3d presentations. One cache corresponds to one study. - -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ColoredPrs3dCache:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 MINIMAL
 LIMITED
 NO_ENLARGE
 ENLARGE
 IMPOSSIBLE
enum  MemoryMode { MINIMAL, -LIMITED - }
enum  EnlargeType { NO_ENLARGE, -ENLARGE, -IMPOSSIBLE - }

Public Member Functions

void SetMemoryMode (in MemoryMode theMode)
MemoryMode GetMemoryMode ()
void SetLimitedMemory (in float theMemorySize)
float GetLimitedMemory ()
float GetMemorySize ()
ColoredPrs3dHolder CreateHolder (in VISUType theType, in ColoredPrs3dHolder::BasicInput theInput)
EnlargeType GetRequiredMemory (in VISUType theType, in ColoredPrs3dHolder::BasicInput theInput, out float theRequiredMemory)
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Member Enumeration Documentation

- -
- -
- -

-This enumeration contains the cache memory modes.

Enumerator:
- - - -
MINIMAL  -Minimal memory mode (default behaviour).
LIMITED  -Limited memory mode (fixed memory size for presentations).
-
- -
-

- -

- -
- -

-This enumeration defines how to enlarge the cache limited memory.

Enumerator:
- - - - -
NO_ENLARGE  -No need to enlarge (default behaviour).
ENLARGE  -Enlarge limited memory.
IMPOSSIBLE  -Impossible to enlarge (not enough free memory).
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.ColoredPrs3dCache.SetMemoryMode (in MemoryMode  theMode  ) 
-
-
- -

-Sets a memory mode. -

-

- -

-
- - - - - - - - -
MemoryMode VISU.ColoredPrs3dCache.GetMemoryMode (  ) 
-
-
- -

-Gets a memory mode. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3dCache.SetLimitedMemory (in float  theMemorySize  ) 
-
-
- -

-Sets a memory size for limited mode (Mb). -

-

- -

-
- - - - - - - - -
float VISU.ColoredPrs3dCache.GetLimitedMemory (  ) 
-
-
- -

-Gets a memory size for limited mode (Mb). -

-

- -

-
- - - - - - - - -
float VISU.ColoredPrs3dCache.GetMemorySize (  ) 
-
-
- -

-Gets memory size actually used by the cache system (Mb). -

-

- -

-
- - - - - - - - - - - - - - - - - - -
ColoredPrs3dHolder VISU.ColoredPrs3dCache.CreateHolder (in VISUType  theType,
in ColoredPrs3dHolder::BasicInput  theInput 
)
-
-
- -

-Creates ColoredPrs3dHolder. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
EnlargeType VISU.ColoredPrs3dCache.GetRequiredMemory (in VISUType  theType,
in ColoredPrs3dHolder::BasicInput  theInput,
out float  theRequiredMemory 
)
-
-
- -

-Gets a memory which is required to create a holder. -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache__inherit__graph.jpg deleted file mode 100644 index 5cab7235..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dCache__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder.html deleted file mode 100644 index 9ed99118..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ColoredPrs3dHolder Interface Reference

ColoredPrs3dHolder interface. Interface of 3d presentation's holder, which represents colored 3d presentations, created on fields. It is publishing in the object browser in a separate folder and can be controled by viewer's slider. - -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ColoredPrs3dHolder:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

typedef sequence< TimeStampInfoTimeStampsRange

Public Member Functions

boolean Apply (in ColoredPrs3d thePrs3d, in BasicInput theInput, in View3D theView3D)
ColoredPrs3d GetDevice ()
VISUType GetPrsType ()
TimeStampsRange GetTimeStampsRange ()
BasicInput GetBasicInput ()
ColoredPrs3dCache GetCache ()
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()

Data Structures

struct  BasicInput
struct  TimeStampInfo
-

Member Typedef Documentation

- -
- -
- -

-Defines representation range of timestamps. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
boolean VISU.ColoredPrs3dHolder.Apply (in ColoredPrs3d  thePrs3d,
in BasicInput  theInput,
in View3D  theView3D 
)
-
-
- -

-Apply input parameters to last visited presentation in the cache. -

-

- -

-
- - - - - - - - -
ColoredPrs3d VISU.ColoredPrs3dHolder.GetDevice (  ) 
-
-
- -

-Gets the last visited presentation in the cache. -

-

- -

-
- - - - - - - - -
VISUType VISU.ColoredPrs3dHolder.GetPrsType (  ) 
-
-
- -

-Gets type of the managed presentations. -

-

- -

-
- - - - - - - - -
TimeStampsRange VISU.ColoredPrs3dHolder.GetTimeStampsRange (  ) 
-
-
- -

-Gets TimeStampsRange information from the last visited presentation. -

-

- -

-
- - - - - - - - -
BasicInput VISU.ColoredPrs3dHolder.GetBasicInput (  ) 
-
-
- -

-Gets input parameters of the last visited presentation. -

-

- -

-
- - - - - - - - -
ColoredPrs3dCache VISU.ColoredPrs3dHolder.GetCache (  ) 
-
-
- -

-Gets a ColoredPrs3dCache, to which the holder belongs -

-

- -

-
- - - - - - - - -
float VISU.ColoredPrs3dHolder.GetMemorySize (  ) 
-
-
- -

-Gets memory size actually used by the holder (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder__inherit__graph.jpg deleted file mode 100644 index 8f127ae5..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3dHolder__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d__inherit__graph.jpg deleted file mode 100644 index f9aaa9a3..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ColoredPrs3d__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html deleted file mode 100644 index 6dab2288..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Container Interface Reference

Container presentable object interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Container:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void AddCurve (in Curve theCurve)
void RemoveCurve (in Curve theCurve)
long GetNbCurves ()
void Clear ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This class is provided in order to create one presentation using several presentable objects. This can provide a combination of a set of curves to display them in XY plot view. -

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.Container.AddCurve (in Curve  theCurve  ) 
-
-
- -

-Adds a curve into the container.

Parameters:
- - -
theCurve The added curve.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.Container.RemoveCurve (in Curve  theCurve  ) 
-
-
- -

-Removes a curve from the container.

Parameters:
- - -
theCurve The removed curve.
-
- -
-

- -

-
- - - - - - - - -
long VISU.Container.GetNbCurves (  ) 
-
-
- -

-Gets the number of curves which are stored in the container.

Returns:
A long value corresponding to the number of curves which are stored in the container.
- -
-

- -

-
- - - - - - - - -
void VISU.Container.Clear (  ) 
-
-
- -

-Removes all curves from the container. -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container__inherit__graph.jpg deleted file mode 100644 index ed68a9b5..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Container__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html deleted file mode 100644 index a959e674..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve.html +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Curve Interface Reference

Interface of curve representation. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Curve:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 NONE
 CIRCLE
 RECTANGLE
 DIAMOND
 DTRIANGLE
 UTRIANGLE
 LTRIANGLE
 RTRIANGLE
 CROSS
 XCROSS
 VOIDLINE
 SOLIDLINE
 DASHLINE
 DOTLINE
 DASHDOTLINE
 DASHDOTDOTLINE
enum  MarkerType {
-  NONE, -CIRCLE, -RECTANGLE, -DIAMOND, -
-  DTRIANGLE, -UTRIANGLE, -LTRIANGLE, -RTRIANGLE, -
-  CROSS, -XCROSS -
- }
enum  LineType {
-  VOIDLINE, -SOLIDLINE, -DASHLINE, -DOTLINE, -
-  DASHDOTLINE, -DASHDOTDOTLINE -
- }

Public Member Functions

void SetTitle (in string theTitle)
string GetTitle ()
void SetColor (in SALOMEDS::Color theColor)
SALOMEDS::Color GetColor ()
void SetMarker (in MarkerType theType)
MarkerType GetMarker ()
void SetLine (in LineType theType, in long theLineWidth)
LineType GetLine ()
long GetLineWidth ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Manages presentation parameters of one curve. It can be used for presentation of a set of curves using a combined presentation. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::Curve::MarkerType
-
-
- -

-This enumeration contains a set of elements defining the presentation type of markers (data points) with help of which the curve is constructed on the graphics.

Enumerator:
- - - - - - - - - - - -
NONE  -
CIRCLE  -
RECTANGLE  -
DIAMOND  -
DTRIANGLE  -
UTRIANGLE  -
LTRIANGLE  -
RTRIANGLE  -
CROSS  -
XCROSS  -
-
- -
-

- -

-
- - - - -
enum VISU::Curve::LineType
-
-
- -

-This enumeration contains a set of elements defining the type of presentation of a curve line on the graphics.

Enumerator:
- - - - - - - -
VOIDLINE  -
SOLIDLINE  -
DASHLINE  -
DOTLINE  -
DASHDOTLINE  -
DASHDOTDOTLINE  -
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.Curve.SetTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the curve.

Parameters:
- - -
theTitle This string parameter defines the title of this curve.
-
- -
-

- -

-
- - - - - - - - -
string VISU.Curve.GetTitle (  ) 
-
-
- -

-Gets the title of the curve.

Returns:
String value corresponding to the title of the curve.
- -
-

- -

-
- - - - - - - - - -
void VISU.Curve.SetColor (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets the color of the curve.

Parameters:
- - -
theColor The color of the curve. This parameter is taken from the Orientation enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.Curve.GetColor (  ) 
-
-
- -

-Gets the color of the curve.

Returns:
Color of the curve. The returned value will correspond to one of the elements the Color enumeration.
- -
-

- -

-
- - - - - - - - - -
void VISU.Curve.SetMarker (in MarkerType  theType  ) 
-
-
- -

-Sets the presentation type of markers (data points) with help of which the curve is constructed on the graphics.

Parameters:
- - -
theType This parameter defines the type of marker with help of which the curve is constructed on the graphics. It is taken from MarkerType enumeration.
-
- -
-

- -

-
- - - - - - - - -
MarkerType VISU.Curve.GetMarker (  ) 
-
-
- -

-Gets the presentation type of markers (data points) with help of which the curve is constructed on the graphics.

Returns:
The type of marker with help of which the curve is constructed on the graphics. The returned value will correspond to one of the elements the MarkerType enumeration.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Curve.SetLine (in LineType  theType,
in long  theLineWidth 
)
-
-
- -

-Sets the type of presentation of curve lines on the graphics.

Parameters:
- - - -
theType This parameter defines the type of presentation of curve lines on the graphics.
theLineWidth Long value defining the width of the curve line.
-
- -
-

- -

-
- - - - - - - - -
LineType VISU.Curve.GetLine (  ) 
-
-
- -

-Gets the type of representation of curve lines on the graphics.

Returns:
The type of representation of curve lines on the graphics.
- -
-

- -

-
- - - - - - - - -
long VISU.Curve.GetLineWidth (  ) 
-
-
- -

-Gets the width of the curve line.

Returns:
Long value corresponding to the width of the curve line.
- -
-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve__inherit__graph.jpg deleted file mode 100644 index 4beb40dd..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Curve__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html deleted file mode 100644 index 0ba6ffce..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines.html +++ /dev/null @@ -1,1568 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.CutLines Interface Reference

Cut lines presentation. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.CutLines:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetOrientation (in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle)
void SetOrientation2 (in CutPlanes::Orientation theOrientation, in double theXAngle, in double theYAngle)
CutPlanes::Orientation GetOrientationType ()
CutPlanes::Orientation GetOrientationType2 ()
double GetRotateX ()
double GetRotateX2 ()
double GetRotateY ()
double GetRotateY2 ()
void SetDisplacement (in double theDisp)
void SetDisplacement2 (in double theDisp)
double GetDisplacement ()
double GetDisplacement2 ()
void SetBasePlanePosition (in double thePlanePosition)
double GetBasePlanePosition ()
void SetLinePosition (in long thePlaneNumber, in double thePlanePosition)
double GetLinePosition (in long thePlaneNumber)
void SetDefault ()
boolean IsDefault ()
void SetDefaultPosition (in long thePlaneNumber)
boolean IsDefaultPosition (in long thePlaneNumber)
void SetNbLines (in long theNb)
long GetNbLines ()
void SetAllCurvesInverted (in boolean theInvert)
boolean IsAllCurvesInverted ()
void SetUseAbsoluteLength (in boolean theAbsLength)
boolean IsUseAbsoluteLength ()
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of a Cut lines presentation. Cut Lines is a type of presentation which displays colored cells with applied scalar values on the mesh where lines are placed. The procedure of construction of a Cut Lines presentation reuses the algorithm of creation of Cut Planes presentation and consists of two steps:

-1. From Cut Planes presentation one plane is taken and it is used as base plane for construction of cut lines. 2. This plane is cut by a regular array of planes. The result of this operation is a regular array of lines in space, belonging to the same plane and having the same orientation. They are located inside or on the mesh. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.CutLines.SetOrientation (in CutPlanes::Orientation  theOrientation,
in double  theXAngle,
in double  theYAngle 
)
-
-
- -

-Sets the type of orientation in 3D space of the base plane of a cut lines presentation.

Parameters:
- - - - -
theOrientation The orientation of the base plane in 3D space.
theXAngle The angle of rotation of the base plane around the first axis of the chosen orientation.
theXAngle The angle of rotation of the base plane around the second axis of the chosen orientation.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.CutLines.SetOrientation2 (in CutPlanes::Orientation  theOrientation,
in double  theXAngle,
in double  theYAngle 
)
-
-
- -

-Sets the type of orientation in 3D space of the cutting planes of a cut lines presentation.

Parameters:
- - - - -
theOrientation This parameter defines the type of orientation of the cutting planes in 3D space. It is taken from the Orientation enumeration.
theXAngle The angle of rotation of the cutting planes around the first axis of the chosen orientation.
theXAngle The angle of rotation of the cutting planes around the second axis of the chosen orientation.
-
- -
-

- -

-
- - - - - - - - -
CutPlanes::Orientation VISU.CutLines.GetOrientationType (  ) 
-
-
- -

-Gets the type of orientation in 3D space of the base plane of a cut lines presentation. -

-

- -

-
- - - - - - - - -
CutPlanes::Orientation VISU.CutLines.GetOrientationType2 (  ) 
-
-
- -

-Gets the type of orientation in 3D space of the cutting planes of a cut lines presentation. -

-

- -

-
- - - - - - - - -
double VISU.CutLines.GetRotateX (  ) 
-
-
- -

-Gets rotation angle of the base plane around the first axis of the chosen orientation. -

-

- -

-
- - - - - - - - -
double VISU.CutLines.GetRotateX2 (  ) 
-
-
- -

-Gets rotation angle of the cutting planes around the first axis of the chosen orientation. -

-

- -

-
- - - - - - - - -
double VISU.CutLines.GetRotateY (  ) 
-
-
- -

-Gets rotation angle of the base plane around the second axis of the chosen orientation. -

-

- -

-
- - - - - - - - -
double VISU.CutLines.GetRotateY2 (  ) 
-
-
- -

-Gets rotation angle of the cutting planes around the second axis of the chosen orientation. -

-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetDisplacement (in double  theDisp  ) 
-
-
- -

-Sets the displacement of the base plane of the cut lines presentation in 3D space.

-

Parameters:
- - -
theDisp This parameter defines position of the base plane in 3D space. It varies from 0 to 1.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetDisplacement2 (in double  theDisp  ) 
-
-
- -

-Sets the displacement of the cutting planes of the cut lines presentation in 3D space.

-

Parameters:
- - -
theDisp This parameter defines position of the cutting planes in 3D space. It varies from 0 to 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.CutLines.GetDisplacement (  ) 
-
-
- -

-Gets the displacement of the base plane of the cut lines presentation in 3D space. -

-

- -

-
- - - - - - - - -
double VISU.CutLines.GetDisplacement2 (  ) 
-
-
- -

-Gets the displacement of the cutting planes of the cut lines presentation in 3D space. -

-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetBasePlanePosition (in double  thePlanePosition  ) 
-
-
- -

-Sets the position of the base plane in 3D space.

Parameters:
- - -
thePlanePosition A double value defining the position of the base plane in 3D space.
-
- -
-

- -

-
- - - - - - - - -
double VISU.CutLines.GetBasePlanePosition (  ) 
-
-
- -

-Gets the position of the base plane in 3D space. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.CutLines.SetLinePosition (in long  thePlaneNumber,
in double  thePlanePosition 
)
-
-
- -

-Sets the position of one of cutting planes in 3D space.

Parameters:
- - - -
thePlaneNumber A long value defining the order number of this cutting plane.
thePlanePosition A double value defining the position of the base plane in 3D space.
-
- -
-

- -

-
- - - - - - - - - -
double VISU.CutLines.GetLinePosition (in long  thePlaneNumber  ) 
-
-
- -

-Gets the position of one of cutting planes in 3D space.

Parameters:
- - -
thePlaneNumber A long value defining the order number of this cutting plane.
-
- -
-

- -

-
- - - - - - - - -
void VISU.CutLines.SetDefault (  ) 
-
-
- -

-Sets the position of the base plane to default value. -

-

- -

-
- - - - - - - - -
boolean VISU.CutLines.IsDefault (  ) 
-
-
- -

-Determines whether the base plane has default position.

Returns:
True if the base plane has default position.
- -
-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetDefaultPosition (in long  thePlaneNumber  ) 
-
-
- -

-Sets the position of the choosen cutting plane to default value.

Parameters:
- - -
thePlaneNumber The number of this cutting plane.
-
- -
-

- -

-
- - - - - - - - - -
boolean VISU.CutLines.IsDefaultPosition (in long  thePlaneNumber  ) 
-
-
- -

-Determines whether the choosen cutting plane has default position.

Parameters:
- - -
thePlaneNumber The number of this cutting plane.
-
-
Returns:
True if this cutting plane has default position.
- -
-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetNbLines (in long  theNb  ) 
-
-
- -

-Sets the number of cut lines.

Parameters:
- - -
theNb The number of cut lines.
-
- -
-

- -

-
- - - - - - - - -
long VISU.CutLines.GetNbLines (  ) 
-
-
- -

-Gets the number of cut lines. -

-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetAllCurvesInverted (in boolean  theInvert  ) 
-
-
- -

-Invert all curves of corresponding table

Parameters:
- - -
theInvert - Invert all curves, if value is TRUE, else not.
-
- -
-

- -

-
- - - - - - - - -
boolean VISU.CutLines.IsAllCurvesInverted (  ) 
-
-
- -

-Checks the orientation of all curves

Return values:
- - -
TRUE - if all curves are inverted, else FALSE
-
- -
-

- -

-
- - - - - - - - - -
void VISU.CutLines.SetUseAbsoluteLength (in boolean  theAbsLength  ) 
-
-
- -

-Sets values which cutlines would be shown: aboslute or relative values

Parameters:
- - -
theAbsLength - boolean value, TRUE or false.
-
- -
-

- -

-
- - - - - - - - -
boolean VISU.CutLines.IsUseAbsoluteLength (  ) 
-
-
- -

-Checks values of cutlines: using aboslute or relative values -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines__inherit__graph.jpg deleted file mode 100644 index e7dea050..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutLines__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html deleted file mode 100644 index 2fa278d1..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes.html +++ /dev/null @@ -1,1222 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.CutPlanes Interface Reference

Cut planes interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.CutPlanes:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 XY
 YZ
 ZX
enum  Orientation { XY, -YZ, -ZX - }
 HORIZONTAL
 VERTICAL

Public Member Functions

void SetOrientation (in Orientation theOrientation, in double theXAngle, in double theYAngle)
Orientation GetOrientationType ()
double GetRotateX ()
double GetRotateY ()
void SetDisplacement (in double theDisp)
double GetDisplacement ()
void SetPlanePosition (in long thePlaneNumber, in double thePlanePosition)
void SetDefault (in long thePlaneNumber)
double GetPlanePosition (in long thePlaneNumber)
boolean IsDefault (in long thePlaneNumber)
void SetNbPlanes (in long theNb)
long GetNbPlanes ()
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of Cut planes presentation. This type of presentation consists of cutting your initial mesh by a definite number of planes. As the result you will see these planes which will be cutted by the borders of the mesh. -

-


Member Enumeration Documentation

- -
- -
- -

-This enumeration contains a set of elements defining the type of orientation in 3D space of the cut planes.

Enumerator:
- - - - -
XY  -The object is located in the plane formed by X and Y axis.
YZ  -The object is located in the plane formed by Y and Z axis.
ZX  -
-
- -

-Implements VISU.ColoredPrs3d. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.CutPlanes.SetOrientation (in Orientation  theOrientation,
in double  theXAngle,
in double  theYAngle 
)
-
-
- -

-Sets the type of orientation in 3D space of cut planes presentation.

Parameters:
- - - - -
theOrientation This parameter defines the type of orientation of cut planes in 3D space. It is taken from the Orientation enumeration.
theXAngle The angle of rotation of the cut planes around the first axis of the chosen orientation.
theXAngle The angle of rotation of the cut planes around the second axis of the chosen orientation.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.CutPlanes.GetOrientationType (  ) 
-
-
- -

-Gets the type of orientation in 3D space of cut planes presentation. -

-

- -

-
- - - - - - - - -
double VISU.CutPlanes.GetRotateX (  ) 
-
-
- -

-Gets rotation angle of the cut plane presentation around the first axis of the chosen orientation. -

-

- -

-
- - - - - - - - -
double VISU.CutPlanes.GetRotateY (  ) 
-
-
- -

-Gets rotation angle of the cut plane presentation around the second axis of the chosen orientation. -

-

- -

-
- - - - - - - - - -
void VISU.CutPlanes.SetDisplacement (in double  theDisp  ) 
-
-
- -

-Sets the displacement of the cut planes in 3D space.

-

Parameters:
- - -
theDisp This parameter defines position of the cut planes in 3D space. It varies from 0 to 1. If the chosen value is 0.5, the cut planes will be evenly located regarding each other; in other words, the distance between all of them will be equal. If the value is higher or lower than 0.5, the planes will be displaced to one or another side.
-
- -
-

- -

-
- - - - - - - - -
double VISU.CutPlanes.GetDisplacement (  ) 
-
-
- -

-Gets the displacement of the cut planes in 3D space. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.CutPlanes.SetPlanePosition (in long  thePlaneNumber,
in double  thePlanePosition 
)
-
-
- -

-Sets the position of a definite cut plane.

Parameters:
- - - -
thePlaneNumber The number of this cut plane.
thePlanePosition The position of this cut plane.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.CutPlanes.SetDefault (in long  thePlaneNumber  ) 
-
-
- -

-Sets the position of the choosen plane to default value.

Parameters:
- - -
thePlaneNumber The number of this cut plane.
-
- -
-

- -

-
- - - - - - - - - -
double VISU.CutPlanes.GetPlanePosition (in long  thePlaneNumber  ) 
-
-
- -

-Gets the position of the choosen plane -

-

- -

-
- - - - - - - - - -
boolean VISU.CutPlanes.IsDefault (in long  thePlaneNumber  ) 
-
-
- -

-Determines whether the choosen plane has default position.

Parameters:
- - -
thePlaneNumber The number of this cut plane.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.CutPlanes.SetNbPlanes (in long  theNb  ) 
-
-
- -

-Sets the number of cut planes.

Parameters:
- - -
theNb The number of cut planes.
-
- -
-

- -

-
- - - - - - - - -
long VISU.CutPlanes.GetNbPlanes (  ) 
-
-
- -

-Gets the number of cut planes. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes__inherit__graph.jpg deleted file mode 100644 index 9f086654..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1CutPlanes__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html deleted file mode 100644 index 51fab04a..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape.html +++ /dev/null @@ -1,1043 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.DeformedShape Interface Reference

Deformed shape presentation interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.DeformedShape:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetScale (in double theScale)
double GetScale ()
boolean IsColored ()
void ShowColored (in boolean theColored)
SALOMEDS::Color GetColor ()
void SetColor (in SALOMEDS::Color theColor)
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of the deformed shape presentation. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.DeformedShape.SetScale (in double  theScale  ) 
-
-
- -

-Sets the scale of the presentatable object.

Parameters:
- - -
theScale Double value defining the scale of this presentable object.
-
- -
-

- -

-
- - - - - - - - -
double VISU.DeformedShape.GetScale (  ) 
-
-
- -

-Gets the scale of the presentatable object. -

-

- -

-
- - - - - - - - -
boolean VISU.DeformedShape.IsColored (  ) 
-
-
- -

-This boolean method returns True if this deformed shape presentation is colored. -

-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.ShowColored (in boolean  theColored  ) 
-
-
- -

-Shows this presentation in colored mode.

Parameters:
- - -
theColored If this boolean parameter is True this presentable object will be shown in colored mode.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.DeformedShape.GetColor (  ) 
-
-
- -

-Gets the color of this presentable object.

Returns:
The color of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.SetColor (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets the color of this presentation.

Parameters:
- - -
theColor The color of this presentation. This parameter is taken from the Color enumeration.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape__inherit__graph.jpg deleted file mode 100644 index a53bc9f6..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1DeformedShape__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html deleted file mode 100644 index 9c195777..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints.html +++ /dev/null @@ -1,740 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.GaussPoints Interface Reference

Gauss Points presentation interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.GaussPoints:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of the Gauss Points presentation. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints__inherit__graph.jpg deleted file mode 100644 index c11019fb..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1GaussPoints__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html deleted file mode 100644 index 252b38a1..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces.html +++ /dev/null @@ -1,945 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.IsoSurfaces Interface Reference

Interface of the isometric surface presentation. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.IsoSurfaces:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetNbSurfaces (in long theNb)
long GetNbSurfaces ()
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface contains presentation parameters of isometric surface presentations.
-Iso surfaces presentation combines all equal scalar values on the cells and on the basis of them constructs isobaric surfaces, which form this presentation. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.IsoSurfaces.SetNbSurfaces (in long  theNb  ) 
-
-
- -

-Sets the number of isometric surfaces.

Parameters:
- - -
theNb A long value defining the number of isometric surfaces which will be used for construction of this presentation.
-
- -
-

- -

-
- - - - - - - - -
long VISU.IsoSurfaces.GetNbSurfaces (  ) 
-
-
- -

-Gets the number of isometric surfaces -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces__inherit__graph.jpg deleted file mode 100644 index 1f9133f0..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1IsoSurfaces__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html deleted file mode 100644 index 1215e726..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Mesh Interface Reference

Interface of the mesh. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Mesh:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void SetCellColor (in SALOMEDS::Color theColor)
SALOMEDS::Color GetCellColor ()
void SetNodeColor (in SALOMEDS::Color theColor)
SALOMEDS::Color GetNodeColor ()
void SetLinkColor (in SALOMEDS::Color theColor)
SALOMEDS::Color GetLinkColor ()
void SetPresentationType (in PresentationType theType)
PresentationType GetPresentationType ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Manages presentation parameters of a 3D presentation of a mesh. This object can be used for presentation of set of curves using Container class. -

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.Mesh.SetCellColor (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets the color of mesh cells.

Parameters:
- - -
theColor The color of the cells. This parameter is taken from Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.Mesh.GetCellColor (  ) 
-
-
- -

-Gets the color of mesh cells. -

-

- -

-
- - - - - - - - - -
void VISU.Mesh.SetNodeColor (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets the color of mesh nodes.

Parameters:
- - -
theColor The color of the nodes. This parameter is taken from Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.Mesh.GetNodeColor (  ) 
-
-
- -

-Gets the color of mesh nodes. -

-

- -

-
- - - - - - - - - -
void VISU.Mesh.SetLinkColor (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets the color of mesh links.

Parameters:
- - -
theColor The color of the links. This parameter is taken from Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.Mesh.GetLinkColor (  ) 
-
-
- -

-Gets the color of mesh links. -

-

- -

-
- - - - - - - - - -
void VISU.Mesh.SetPresentationType (in PresentationType  theType  ) 
-
-
- -

-Sets the type of representation of a mesh.

Parameters:
- - -
theType The of representation of a mesh. This parameter is taken from PresentationType enumeration.
-
- -
-

- -

-
- - - - - - - - -
PresentationType VISU.Mesh.GetPresentationType (  ) 
-
-
- -

-Gets the type of representation of the mesh.

Returns:
The type of representation of the mesh.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh__inherit__graph.jpg deleted file mode 100644 index 57324c08..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Mesh__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html deleted file mode 100644 index 815db0fc..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D.html +++ /dev/null @@ -1,1235 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Plot3D Interface Reference

Plot3D interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Plot3D:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 XY
 YZ
 ZX
enum  Orientation { XY, -YZ, -ZX - }
 HORIZONTAL
 VERTICAL

Public Member Functions

void SetOrientation (in Orientation theOrientation, in double theXAngle, in double theYAngle)
Orientation GetOrientationType ()
double GetRotateX ()
double GetRotateY ()
void SetPlanePosition (in double thePlanePosition, in boolean theIsRelative)
double GetPlanePosition ()
boolean IsPositionRelative ()
void SetScaleFactor (in double theScaleFactor)
double GetScaleFactor ()
void SetContourPrs (in boolean theIsContourPrs)
boolean GetIsContourPrs ()
void SetNbOfContours (in long theNb)
long GetNbOfContours ()
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of Plot3D presentation. This type of presentation consists of deforming initial planar mesh according to values assigned to the mesh elements. If mesh not planar but volumic one, it is possible to generate intermediate planar mesh. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::Plot3D::Orientation
-
-
- -

-This enumeration contains a set of elements defining the type of orientation in 3D space of the cutting plane.

Enumerator:
- - - - -
XY  -The object is located in the plane formed by X and Y axis.
YZ  -The object is located in the plane formed by Y and Z axis.
ZX  -
-
- -

-Implements VISU.ColoredPrs3d. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Plot3D.SetOrientation (in Orientation  theOrientation,
in double  theXAngle,
in double  theYAngle 
)
-
-
- -

-Sets the orientation in 3D space of cutting plane for the presentation.

Parameters:
- - - - -
theOrientation This parameter defines the type of orientation of cutting plane in 3D space. It is taken from the Orientation enumeration.
theXAngle The angle of rotation of the cutting plane around the first axis of the chosen orientation.
theXAngle The angle of rotation of the cutting plane around the second axis of the chosen orientation.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.Plot3D.GetOrientationType (  ) 
-
-
- -

-Gets the type of orientation in 3D space of cutting plane. -

-

- -

-
- - - - - - - - -
double VISU.Plot3D.GetRotateX (  ) 
-
-
- -

-Gets rotation angle of the cutting plane around the first axis of the chosen orientation. -

-

- -

-
- - - - - - - - -
double VISU.Plot3D.GetRotateY (  ) 
-
-
- -

-Gets rotation angle of the cutting plane around the second axis of the chosen orientation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Plot3D.SetPlanePosition (in double  thePlanePosition,
in boolean  theIsRelative 
)
-
-
- -

-Sets the position of a cutting plane.

Parameters:
- - - -
thePlanePosition The position of the cutting plane.
theIsRelative Define, whether the input position is relative.
-
- -
-

- -

-
- - - - - - - - -
double VISU.Plot3D.GetPlanePosition (  ) 
-
-
- -

-Gets the position of the cutting plane -

-

- -

-
- - - - - - - - -
boolean VISU.Plot3D.IsPositionRelative (  ) 
-
-
- -

-Returns true if a position of cutting plane is relative -

-

- -

-
- - - - - - - - - -
void VISU.Plot3D.SetScaleFactor (in double  theScaleFactor  ) 
-
-
- -

-Sets the scale factor for scalar values (how much corresponding mesh elements should be translated).

Parameters:
- - -
theScaleFactor The scaling factor.
-
- -
-

- -

-
- - - - - - - - -
double VISU.Plot3D.GetScaleFactor (  ) 
-
-
- -

-Gets the scale factor for scalar values. (how much corresponding mesh elements is translated) -

-

- -

-
- - - - - - - - - -
void VISU.Plot3D.SetContourPrs (in boolean  theIsContourPrs  ) 
-
-
- -

-Sets presentation type: contour or surface.

Parameters:
- - -
theIsContourPrs Define, whether presentation type is contour.
-
- -
-

- -

-
- - - - - - - - -
boolean VISU.Plot3D.GetIsContourPrs (  ) 
-
-
- -

-Returns true if presentation type is contour. -

-

- -

-
- - - - - - - - - -
void VISU.Plot3D.SetNbOfContours (in long  theNb  ) 
-
-
- -

-Sets the number of contours.

Parameters:
- - -
theNb The number of contours.
-
- -
-

- -

-
- - - - - - - - -
long VISU.Plot3D.GetNbOfContours (  ) 
-
-
- -

-Gets the number of contours. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D__inherit__graph.jpg deleted file mode 100644 index 9197fe3e..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Plot3D__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html deleted file mode 100644 index 896447a5..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Prs3d Interface Reference

3D presentation interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Prs3d:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This is a root class for all 3D presentations, which can be displayed in VISU module. -

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
)
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
)
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  ) 
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d__inherit__graph.jpg deleted file mode 100644 index b2adc95d..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Prs3d__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html deleted file mode 100644 index eae17a13..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.PrsObject Interface Reference

Presentable object interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.PrsObject:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentable object interface is the root class of all presentable objects. -

-


Member Function Documentation

- -
-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject__inherit__graph.jpg deleted file mode 100644 index cc3fcc6d..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1PrsObject__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html deleted file mode 100644 index 7242d515..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.RemovableObject Interface Reference

Removable object interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.RemovableObject:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Removable object interface is the root class of all removable objects. -

-


Member Function Documentation

- -
-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  ) 
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject__inherit__graph.jpg deleted file mode 100644 index 9da2b763..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1RemovableObject__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html deleted file mode 100644 index ab19f34a..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Result Interface Reference

Interface Result. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Result:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

boolean BuildAll ()
boolean Build (in boolean theIsBuildAll, in boolean theIsAtOnce)
boolean IsDone ()
boolean IsEntitiesDone ()
void SetBuildFields (in boolean theIsBuildFields, in boolean theIsCalculateMinMax)
boolean IsFieldsDone ()
void SetBuildGroups (in boolean theIsBuildGroups)
boolean IsGroupsDone ()
boolean IsMinMaxDone ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

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. -

-


Member Function Documentation

- -
-
- - - - - - - - -
boolean VISU.Result.BuildAll (  ) 
-
-
- -

-Reads all data from the corresponding sources. By default the data is loaded on demand. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
boolean VISU.Result.Build (in boolean  theIsBuildAll,
in boolean  theIsAtOnce 
)
-
-
- -

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

-

- -

-
- - - - - - - - -
boolean VISU.Result.IsDone (  ) 
-
-
- -

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

-

- -

-
- - - - - - - - -
boolean VISU.Result.IsEntitiesDone (  ) 
-
-
- -

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

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.Result.SetBuildFields (in boolean  theIsBuildFields,
in boolean  theIsCalculateMinMax 
)
-
-
- -

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

-

- -

-
- - - - - - - - -
boolean VISU.Result.IsFieldsDone (  ) 
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.Result.SetBuildGroups (in boolean  theIsBuildGroups  ) 
-
-
- -

-Choose to parse MED groups. -

-

- -

-
- - - - - - - - -
boolean VISU.Result.IsGroupsDone (  ) 
-
-
- -

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

-

- -

-
- - - - - - - - -
boolean VISU.Result.IsMinMaxDone (  ) 
-
-
- -

-Allow to check is min / max calculation over field's components already perfrormed or not -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result__inherit__graph.jpg deleted file mode 100644 index 00ee18dd..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Result__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html deleted file mode 100644 index 75bc2bbb..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap.html +++ /dev/null @@ -1,903 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ScalarMap Interface Reference

Interface of the Scalar Map. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ScalarMap:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface is responsable for coloring of 3D field presentations according the scalar values applied to different cells. As well it contains presentation parameters of the scalar bar. The scalar bar is displayed along with each colored field presentation and serves for consulting the correspondance between colors and data values. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  ) 
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  ) 
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
)
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  ) 
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  ) 
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  ) 
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html deleted file mode 100644 index 79095052..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape.html +++ /dev/null @@ -1,1051 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ScalarMapOnDeformedShape Interface Reference

Deformed shape and Scalar Map presentation interface. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ScalarMapOnDeformedShape:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetScale (in double theScale)
double GetScale ()
void SetScalarField (in Entity theEntity, in string theFieldName, in long theTimeStampNumber)
Entity GetScalarEntity ()
string GetScalarFieldName ()
long GetScalarTimeStampNumber ()
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of the scalar map on deformed shape presentation. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.ScalarMapOnDeformedShape.SetScale (in double  theScale  ) 
-
-
- -

-Sets the scale of the presentatable object.

Parameters:
- - -
theScale Double value defining the scale of this presentable object.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ScalarMapOnDeformedShape.GetScale (  ) 
-
-
- -

-Gets the scale of the presentatable object. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.ScalarMapOnDeformedShape.SetScalarField (in Entity  theEntity,
in string  theFieldName,
in long  theTimeStampNumber 
)
-
-
- -

-Sets the scalar field

Parameters:
- - - - -
theEntity - entity of scalar field
theFieldName - the name of scalar field
theTimeStampNumber - the timestamp number for the scalar field
-
- -
-

- -

-
- - - - - - - - -
Entity VISU.ScalarMapOnDeformedShape.GetScalarEntity (  ) 
-
-
- -

-Get scalar entity -

-

- -

-
- - - - - - - - -
string VISU.ScalarMapOnDeformedShape.GetScalarFieldName (  ) 
-
-
- -

-Get scalar field name -

-

- -

-
- - - - - - - - -
long VISU.ScalarMapOnDeformedShape.GetScalarTimeStampNumber (  ) 
-
-
- -

-Get timestamp number for the scalar field -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape__inherit__graph.jpg deleted file mode 100644 index 0418834b..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMapOnDeformedShape__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap__inherit__graph.jpg deleted file mode 100644 index 50edc964..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ScalarMap__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html deleted file mode 100644 index 250964c8..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines.html +++ /dev/null @@ -1,1276 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.StreamLines Interface Reference

Interface of the stream lines representation. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.StreamLines:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 FORWARD
 BACKWARD
 BOTH
enum  Direction { FORWARD, -BACKWARD, -BOTH - }
 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

boolean SetParams (in double theIntStep, in double thePropogationTime, in double theStepLength, in Prs3d thePrs3d, in double thePercents, in Direction theDirection)
double GetIntegrationStep ()
double GetPropagationTime ()
double GetStepLength ()
Prs3d GetSource ()
double GetUsedPoints ()
Direction GetDirection ()
void SetScale (in double theScale)
double GetScale ()
boolean IsColored ()
void ShowColored (in boolean theColored)
SALOMEDS::Color GetColor ()
void SetColor (in SALOMEDS::Color theColor)
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface contains presentation parameters of stream lines presentations.
-Stream lines is a type of presentation transforming into lines the cells with vectors having most similar direction. A stream line can be thought of as the path that a massless particle takes in a vector field. Streamlines are used to convey the structure of a vector field. Usually streamlines are created to explore the most interesting features in the field. -

-


Member Enumeration Documentation

- -
- -
- -

-This enumerations contains a set of elements necessary for definition of direction of the stream lines.

Enumerator:
- - - - -
FORWARD  -
BACKWARD  -
BOTH  -
-
- -
-

- -

-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
boolean VISU.StreamLines.SetParams (in double  theIntStep,
in double  thePropogationTime,
in double  theStepLength,
in Prs3d  thePrs3d,
in double  thePercents,
in Direction  theDirection 
)
-
-
- -

-Sets the parameters of the stream lines presentation.

Parameters:
- - - - - -
theIntStep Inegration step is a parameter of smoothness of the stream lines. This parameter defines the accuracy of construction of the streamlines. A smaller value of this parameter allows to construct smoother streamlines (at the cost of more computation time).
thePropogationTime This parameter controls the maximum length of the stream line (measured in units of time).
theStepLength This parameter defines the size of the output line segments that make up the streamline (which is represented as a polyline).
thePrs3d The source presentation. The points of the field located on this source presentation will serve as starting points for generation of stream lines.
-
-
Note:
If this parameter is not defined, your stream lines presentation will be generated on all points of the field.
-
Parameters:
- - - -
thePercents This parameter defines the quantity of points of the field (from 0 to 100%) which will be used as starting points for construction of the stream lines. Thus, the value of this parameter can vary from 0 to 1.
theDirection Direction of the stream lines (Forward, Backward or Both).
-
-
Returns:
True if all parameters are properly set.
- -
-

- -

-
- - - - - - - - -
double VISU.StreamLines.GetIntegrationStep (  ) 
-
-
- -

-Gets the value of integration step of the stream lines presentation. -

-

- -

-
- - - - - - - - -
double VISU.StreamLines.GetPropagationTime (  ) 
-
-
- -

-Gets the value of propagation time of the stream lines presentation. -

-

- -

-
- - - - - - - - -
double VISU.StreamLines.GetStepLength (  ) 
-
-
- -

-Gets the value of step length of the stream lines presentation. -

-

- -

-
- - - - - - - - -
Prs3d VISU.StreamLines.GetSource (  ) 
-
-
- -

-Returns the source presentation used for generation of the stream lines. -

-

- -

-
- - - - - - - - -
double VISU.StreamLines.GetUsedPoints (  ) 
-
-
- -

-Gets the quantity of points of the field used as starting points for generation of the stream lines presentation. -

-

- -

-
- - - - - - - - -
Direction VISU.StreamLines.GetDirection (  ) 
-
-
- -

-Returns the direction of the stream lines. -

-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.SetScale (in double  theScale  )  [inherited]
-
-
- -

-Sets the scale of the presentatable object.

Parameters:
- - -
theScale Double value defining the scale of this presentable object.
-
- -
-

- -

-
- - - - - - - - -
double VISU.DeformedShape.GetScale (  )  [inherited]
-
-
- -

-Gets the scale of the presentatable object. -

-

- -

-
- - - - - - - - -
boolean VISU.DeformedShape.IsColored (  )  [inherited]
-
-
- -

-This boolean method returns True if this deformed shape presentation is colored. -

-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.ShowColored (in boolean  theColored  )  [inherited]
-
-
- -

-Shows this presentation in colored mode.

Parameters:
- - -
theColored If this boolean parameter is True this presentable object will be shown in colored mode.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.DeformedShape.GetColor (  )  [inherited]
-
-
- -

-Gets the color of this presentable object.

Returns:
The color of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.SetColor (in SALOMEDS::Color  theColor  )  [inherited]
-
-
- -

-Sets the color of this presentation.

Parameters:
- - -
theColor The color of this presentation. This parameter is taken from the Color enumeration.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines__inherit__graph.jpg deleted file mode 100644 index 9d1b480f..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1StreamLines__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html deleted file mode 100644 index 5077e256..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Table Interface Reference

Table representation interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Table:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 HORIZONTAL
 VERTIACAL
enum  Orientation { HORIZONTAL, -VERTIACAL - }

Public Member Functions

void SetTitle (in string theTitle)
string GetTitle ()
void SetOrientation (in Orientation theOrientation)
Orientation GetOrientation ()
long GetNbRows ()
long GetNbColumns ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Presentation parameters of the Table view. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::Table::Orientation
-
-
- -

-This enumeration contains a set of elements defining the orientation of the table.

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the table.
VERTIACAL  -Vertical orientation of the table.
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.Table.SetTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the table.

Parameters:
- - -
theTitle String parameter defining the title of this table.
-
- -
-

- -

-
- - - - - - - - -
string VISU.Table.GetTitle (  ) 
-
-
- -

-Gets the title of the table.

Returns:
A string value containing the title of the table.
- -
-

- -

-
- - - - - - - - - -
void VISU.Table.SetOrientation (in Orientation  theOrientation  ) 
-
-
- -

-Sets orientation of the table.

Parameters:
- - -
theOrientation This input parameter defines the orientation of the table. It is taken from the Orientation enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.Table.GetOrientation (  ) 
-
-
- -

-Gets orientation of the table.

Returns:
Orientation of the table. The returned value will correspond to one of the elements the Orientation enumeration.
- -
-

- -

-
- - - - - - - - -
long VISU.Table.GetNbRows (  ) 
-
-
- -

-Gets the number of rows of the table.

Returns:
Long value corresponding to the number of rows of the table
- -
-

- -

-
- - - - - - - - -
long VISU.Table.GetNbColumns (  ) 
-
-
- -

-Gets the number of columns of the table.

Returns:
Long value corresponding to the number of columns of the table
- -
-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html deleted file mode 100644 index 6e183f1a..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView.html +++ /dev/null @@ -1,1075 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.TableView Interface Reference

Interface of the Table view. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.TableView:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 OBJECTBROWSER
 VIEWER
 PYTHON
 MESSAGES
 TOP
 CENTER
 BOTTOM
 RIGHT
 LEFT
enum  ViewRepresentation { OBJECTBROWSER, -VIEWER, -PYTHON, -MESSAGES - }
 ViewRepresentation enumeration More...
enum  ViewPosition {
-  TOP, -CENTER, -BOTTOM, -RIGHT, -
-  LEFT -
- }

Public Member Functions

void ShowPart (in ViewRepresentation ViewRepr, in boolean state)
boolean IsPartShown (in ViewRepresentation ViewRepr)
void SplitRight ()
 Split workarea of this view.
void SplitLeft ()
 Split workarea of this view.
void SplitBottom ()
 Split workarea of this view.
void SplitTop ()
 Split workarea of this view.
void OnTop ()
void Attract (in View theView)
void AttractAll (in View theView)
void SetRelativePositionInSplitter (in double thePosition)
void SetRelativeSizeInSplitter (in double theSize)
void SetRelativePositionX (in double thePosition)
void SetRelativePositionY (in double thePosition)
void SetRelativeSizeX (in double theSize)
void SetRelativeSizeY (in double theSize)
void SetViewWidth (in long Width)
void SetViewHeight (in long Height)
long GetViewWidth ()
long GetViewHeight ()
void SetViewPositionHorizontal (in ViewPosition ViewPosHor)
void SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
void Restore ()
void Maximize ()
void SetTitle (in string theTitle)
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
SALOMEDS::Color GetBackground ()
void EraseAll ()
void DisplayAll ()
void Erase (in PrsObject thePrsObj)
void Display (in PrsObject thePrsObj)
void DisplayOnly (in PrsObject thePrsObj)
void Update ()
boolean SavePicture (in string theFileName)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface is used for creation of a view necessary for presentation of a table. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::View::ViewRepresentation [inherited]
-
-
- -

-displaying part ("ALL" isn't setable)

Enumerator:
- - - - - -
OBJECTBROWSER  -
VIEWER  -
PYTHON  -
MESSAGES  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewPosition [inherited]
-
-
- -

-

Enumerator:
- - - - - - -
TOP  -
CENTER  -
BOTTOM  -
RIGHT  -
LEFT  -
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
void VISU.View.ShowPart (in ViewRepresentation  ViewRepr,
in boolean  state 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
boolean VISU.View.IsPartShown (in ViewRepresentation  ViewRepr  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.SplitRight (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view is moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitLeft (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view stays in an old left area, others are moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitBottom (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view is moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitTop (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view stays in an old top area, others are moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.OnTop (  )  [inherited]
-
-
- -

-Put this view window on top of its work area. -

-

- -

-
- - - - - - - - - -
void VISU.View.Attract (in View  theView  )  [inherited]
-
-
- -

-Put theView in workarea of this view right after it. If theView was alone in its workarea, workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.AttractAll (in View  theView  )  [inherited]
-
-
- -

-Put all the view windows from workarea of theView in workarea of this view right after it. Workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one together with all its workarea.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionInSplitter (in double  thePosition  )  [inherited]
-
-
- -

-Set position of this view window relatively its splitter.

Parameters:
- - -
thePosition Desired position of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of positioning is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeInSplitter (in double  theSize  )  [inherited]
-
-
- -

-Set size of this view window relatively its splitter.

Parameters:
- - -
theSize Desired size of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of resizing is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionX (in double  thePosition  )  [inherited]
-
-
- -

-Set horizontal position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired horizontal position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionY (in double  thePosition  )  [inherited]
-
-
- -

-Set vertical position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired vertical position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeX (in double  theSize  )  [inherited]
-
-
- -

-Set horizontal size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired horizontal size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeY (in double  theSize  )  [inherited]
-
-
- -

-Set vertical size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired vertical size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetViewWidth (in long  Width  )  [inherited]
-
-
- -

-Old methods for view parameters management, they don't work now -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewHeight (in long  Height  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewWidth (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewHeight (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionHorizontal (in ViewPosition  ViewPosHor  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionVertical (in ViewPosition  ViewPosVer  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativePosition (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativeSize (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Minimize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Restore (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Maximize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetTitle (in string  theTitle  )  [inherited]
-
-
- -

-Sets the title of the View frame.

Parameters:
- - -
theTitle String parameter defining the title of the View frame.
-
- -
-

- -

-
- - - - - - - - -
string VISU.View.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the View frame. -

-

- -

-
- - - - - - - - - -
void VISU.View.SetBackground (in SALOMEDS::Color  theColor  )  [inherited]
-
-
- -

-Sets background color of the View frame.

Parameters:
- - -
theColor Background color defined in SALOMEDS.Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.View.GetBackground (  )  [inherited]
-
-
- -

-Gets background color of the View frame. -

-

- -

-
- - - - - - - - -
void VISU.View.EraseAll (  )  [inherited]
-
-
- -

-Removes all presentations (presentable objects) from the view. -

-

- -

-
- - - - - - - - -
void VISU.View.DisplayAll (  )  [inherited]
-
-
- -

-Displays all presentations (presentable objects) in the view. -

-

- -

-
- - - - - - - - - -
void VISU.View.Erase (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Removes a definite presentation (presentable object) from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be deleted.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.Display (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Displays a definite presentation (presentable object) in the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.DisplayOnly (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Allows to display only a definite presentation (presentable object) in the view. All other presentations are removed from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - -
void VISU.View.Update (  )  [inherited]
-
-
- -

-Updates the view. -

-

- -

-
- - - - - - - - - -
boolean VISU.View.SavePicture (in string  theFileName  )  [inherited]
-
-
- -

-Saves the view.

Parameters:
- - -
theFileName The name of the file where the view will be saved.
-
-
Returns:
True, if the view have been saved successfully.
- -
-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView__inherit__graph.jpg deleted file mode 100644 index d7b2a076..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1TableView__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table__inherit__graph.jpg deleted file mode 100644 index 9e349760..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Table__inherit__graph.jpg and /dev/null differ 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 deleted file mode 100644 index 704c79dc..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen.html +++ /dev/null @@ -1,1422 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.VISU_Gen Interface Reference

VISU_Gen interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.VISU_Gen:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

void SetCurrentStudy (in SALOMEDS::Study theStudy)
SALOMEDS::Study GetCurrentStudy ()
ViewManager GetViewManager ()
SALOMEDS::SObject ImportTables (in string theFileName)
boolean ExportTableToFile (in SALOMEDS::SObject theTable, in string theFileName)
Result ImportFile (in string theFileName)
Result CreateResult (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 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)
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 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 long theIteration)
GaussPoints GaussPointsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
DeformedShape DeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
ScalarMapOnDeformedShape ScalarMapOnDeformedShapeOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
Vectors VectorsOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
IsoSurfaces IsoSurfacesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
StreamLines StreamLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
CutPlanes CutPlanesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
CutLines CutLinesOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
Plot3D Plot3DOnField (in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in long theIteration)
Table CreateTable (in string theTableEntry)
Curve CreateCurve (in Table theTable, in long theHRow, in long theVRow)
Curve CreateCurveWithZ (in Table theTable, in long theHRow, in long theVRow, in long theZRow)
Container CreateContainer ()
Animation CreateAnimation (in View3D theView3d)
void DeleteResult (in Result theResult)
void DeletePrs3d (in Prs3d thePrs3d)
ColoredPrs3dCache GetColoredPrs3dCache (in SALOMEDS::Study theStudy)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This is the main interface of VISU component. It is necessary for creation of post-processing presentations from given Result and Table object reference, using the views provided by ViewManager. -

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.VISU_Gen.SetCurrentStudy (in SALOMEDS::Study  theStudy  ) 
-
-
- -

-Sets a definite study to be current. -

-

- -

-
- - - - - - - - -
SALOMEDS::Study VISU.VISU_Gen.GetCurrentStudy (  ) 
-
-
- -

-Gets the current study. -

-

- -

-
- - - - - - - - -
ViewManager VISU.VISU_Gen.GetViewManager (  ) 
-
-
- -

-Gets the View Manager which is used for creation of post-processing presentations. -

-

- -

-
- - - - - - - - - -
SALOMEDS::SObject VISU.VISU_Gen.ImportTables (in string  theFileName  ) 
-
-
- -

-Imports tables from a file and create TableAttribute in Sudy -

-

- -

-
- - - - - - - - - - - - - - - - - - -
boolean VISU.VISU_Gen.ExportTableToFile (in SALOMEDS::SObject  theTable,
in string  theFileName 
)
-
-
- -

-Export table to a file -

-

- -

-
- - - - - - - - - -
Result VISU.VISU_Gen.ImportFile (in string  theFileName  ) 
-
-
- -

-Imports data from a file. The access to this file will be conserved outside of the application.

Parameters:
- - -
theFileName String parameter defining the name of the file from which the data will be imported.
-
- -
-

- -

-
- - - - - - - - - -
Result VISU.VISU_Gen.CreateResult (in string  theFileName  ) 
-
-
- -

-Create result and initialize its with the file. The access to this file will be conserved outside of the application.

Parameters:
- - -
theFileName String parameter defining the name of the file from which the data will be imported.
-
- -
-

- -

-
- - - - - - - - - -
Result VISU.VISU_Gen.CopyAndImportFile (in string  theFileName  ) 
-
-
- -

-Imports data from a file. The access to this file will closed.

Parameters:
- - -
theFileName String parameter defining the name of the file from which the data will be imported.
-
- -
-

- -

-
- - - - - - - - - -
Result VISU.VISU_Gen.ImportMed (in SALOMEDS::SObject  theMedSObject  ) 
-
-
- -

-Imports data from a MED object. -

-

- -

-
- - - - - - - - - -
Result VISU.VISU_Gen.ImportMedField (in SALOME_MED::FIELD  theField  ) 
-
-
- -

-Imports data from a MED field. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.VISU_Gen.RenameEntityInStudy (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theNewName 
)
-
-
- -

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

Parameters:
- - - - - - -
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.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.VISU_Gen.RenameFamilyInStudy (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theSubMeshName,
in string  theNewName 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.VISU_Gen.RenameGroupInStudy (in Result  theResult,
in string  theMeshName,
in string  theSubMeshName,
in string  theNewName 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
Mesh VISU.VISU_Gen.MeshOnEntity (in Result  theResult,
in string  theMeshName,
in Entity  theEntity 
)
-
-
- -

-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
theEntity Type of entity where the field is defined
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mesh VISU.VISU_Gen.FamilyMeshOnEntity (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFamilyName 
)
-
-
- -

-Creates on the basis of a family a mesh which will be composed of geometrical elements, corresponding to the type of cells (node, edge, face or cell) of this family.

Parameters:
- - - - -
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.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
Mesh VISU.VISU_Gen.GroupMesh (in Result  theResult,
in string  theMeshName,
in string  theGroupName 
)
-
-
- -

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

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

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ScalarMap VISU.VISU_Gen.ScalarMapOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-Creates a scalar map presentation.

Parameters:
- - - - - - -
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GaussPoints VISU.VISU_Gen.GaussPointsOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DeformedShape VISU.VISU_Gen.DeformedShapeOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ScalarMapOnDeformedShape VISU.VISU_Gen.ScalarMapOnDeformedShapeOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Vectors VISU.VISU_Gen.VectorsOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-Creates a vector presentation.

Parameters:
- - - - - - -
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IsoSurfaces VISU.VISU_Gen.IsoSurfacesOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StreamLines VISU.VISU_Gen.StreamLinesOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CutPlanes VISU.VISU_Gen.CutPlanesOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CutLines VISU.VISU_Gen.CutLinesOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-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
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
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Plot3D VISU.VISU_Gen.Plot3DOnField (in Result  theResult,
in string  theMeshName,
in Entity  theEntity,
in string  theFieldName,
in long  theIteration 
)
-
-
- -

-Creates a Plot3D presentation.

Parameters:
- - - - - - -
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  theTableEntry  ) 
-
-
- -

-Creates a table presentation.

Parameters:
- - -
theTableEntry The entry of the table which will be displayed.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
Curve VISU.VISU_Gen.CreateCurve (in Table  theTable,
in long  theHRow,
in long  theVRow 
)
-
-
- -

-Creates a curve on the basis of points, whose values are taken from the table.

Parameters:
- - - - -
theTable Table containing the data for construction of curves.
HRow Index of the row in the table: abscissa of the point.
VRow Index of the row in the table: ordinate of the point.
-
- -
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Curve VISU.VISU_Gen.CreateCurveWithZ (in Table  theTable,
in long  theHRow,
in long  theVRow,
in long  theZRow 
)
-
-
- -

-Creates a curve on the basis of points, whose values are taken from the table. Each point has also assigned value, that will be shown as tooltip in Plot2d

Parameters:
- - - - - -
theTable Table containing the data for construction of curves.
HRow Index of the row in the table: abscissa of the point.
VRow Index of the row in the table: ordinate of the point.
ZRow Index of the row in the table: assigned value (so-called as Z).
-
- -
-

- -

-
- - - - - - - - -
Container VISU.VISU_Gen.CreateContainer (  ) 
-
-
- -

-Creates a presentation form containing an array of references to the curves. -

-

- -

-
- - - - - - - - - -
Animation VISU.VISU_Gen.CreateAnimation (in View3D  theView3d  ) 
-
-
- -

-Creates an animation in the 3D view.

Parameters:
- - -
theView3d The 3D view, where the animation will be rendered.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.VISU_Gen.DeleteResult (in Result  theResult  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.VISU_Gen.DeletePrs3d (in Prs3d  thePrs3d  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
ColoredPrs3dCache VISU.VISU_Gen.GetColoredPrs3dCache (in SALOMEDS::Study  theStudy  ) 
-
-
- -

-Get or create ColoredPrs3dCache object. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen__inherit__graph.jpg deleted file mode 100644 index f07bf4d7..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1VISU__Gen__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html deleted file mode 100644 index 6d1d99e9..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors.html +++ /dev/null @@ -1,1263 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.Vectors Interface Reference

Interface of the vector presentation. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.Vectors:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 ARROW
 CONE2
 CONE6
 NONE
 CENTER
 TAIL
 HEAD
enum  GlyphType { ARROW, -CONE2, -CONE6, -NONE - }
enum  GlyphPos { CENTER, -TAIL, -HEAD - }
 HORIZONTAL
 VERTICAL
enum  Orientation { HORIZONTAL, -VERTICAL - }

Public Member Functions

void SetLineWidth (in double theWidth)
double GetLineWidth ()
void SetGlyphType (in GlyphType theType)
GlyphType GetGlyphType ()
void SetGlyphPos (in GlyphPos thePos)
GlyphPos GetGlyphPos ()
void SetScale (in double theScale)
double GetScale ()
boolean IsColored ()
void ShowColored (in boolean theColored)
SALOMEDS::Color GetColor ()
void SetColor (in SALOMEDS::Color theColor)
void SetScaling (in Scaling theScaling)
Scaling GetScaling ()
void SetRange (in double theMin, in double theMax)
void SetSourceRange ()
void AddMeshOnGroup (in string theGroupName)
void RemoveAllGeom ()
void SetScalarMode (in long theScalarMode)
long GetScalarMode ()
double GetMin ()
double GetMax ()
double GetSourceMin ()
double GetSourceMax ()
boolean IsRangeFixed ()
void SetPosition (in double X, in double Y)
 Position of the scalar bar.
double GetPosX ()
double GetPosY ()
void SetSize (in double theWidth, in double theHeight)
 Size of this presentable object.
double GetWidth ()
double GetHeight ()
void SetNbColors (in long theNbColors)
long GetNbColors ()
void SetLabels (in long theNbLabels)
long GetLabels ()
void SetTitle (in string theName)
string GetTitle ()
void SetBarOrientation (in Orientation theOrientation)
Orientation GetBarOrientation ()
void SetOffset (in float theDx, in float theDy, in float theDz)
void GetOffset (out float theDx, out float theDy, out float theDz)
float GetMemorySize ()
void RemoveFromStudy ()
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface contains presentation parameters of vector presentations. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::Vectors::GlyphType
-
-
- -

-This enumeration contains a set of elements defining the type of representation of the vector head.

Enumerator:
- - - - - -
ARROW  -
CONE2  -
CONE6  -
NONE  -
-
- -
-

- -

-
- - - - -
enum VISU::Vectors::GlyphPos
-
-
- -

-This enumeration contains a set of elements defining the position of the vector head.

Enumerator:
- - - - -
CENTER  -In the center of the vector.
TAIL  -In the tail of the vector.
HEAD  -In the head of the vector.
-
- -
-

- -

-
- - - - -
enum VISU::ColoredPrs3d::Orientation [inherited]
-
-
- -

-Orientation of the scalar bar (to provide backward compatibility).

Enumerator:
- - - -
HORIZONTAL  -Horizontal orientation of the scalar bar.
VERTICAL  -Vertical orientation of the scalar bar.
-
- -

-Implemented in VISU.Plot3D, and VISU.CutPlanes. -

-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.Vectors.SetLineWidth (in double  theWidth  ) 
-
-
- -

-Sets the width of the lines of the vectors.

Parameters:
- - -
theWidth A double value defining the width of the lines of the vectors.
-
- -
-

- -

-
- - - - - - - - -
double VISU.Vectors.GetLineWidth (  ) 
-
-
- -

-Gets the width of the lines of the vectors. -

-

- -

-
- - - - - - - - - -
void VISU.Vectors.SetGlyphType (in GlyphType  theType  ) 
-
-
- -

-Sets the type of representation of the vector head.

Parameters:
- - -
theType This parameter defines the type of representation of the vector head. This value is taken from the GlyphType enumeration.
-
- -
-

- -

-
- - - - - - - - -
GlyphType VISU.Vectors.GetGlyphType (  ) 
-
-
- -

-Gets the type of representation of the vector head. -

-

- -

-
- - - - - - - - - -
void VISU.Vectors.SetGlyphPos (in GlyphPos  thePos  ) 
-
-
- -

-Sets the position of the vector head.

Parameters:
- - -
thePos This parameter defines the position of the vector head. This value is taken from the GlyphPos enumeration.
-
- -
-

- -

-
- - - - - - - - -
GlyphPos VISU.Vectors.GetGlyphPos (  ) 
-
-
- -

-Gets the position of the vector head. -

-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.SetScale (in double  theScale  )  [inherited]
-
-
- -

-Sets the scale of the presentatable object.

Parameters:
- - -
theScale Double value defining the scale of this presentable object.
-
- -
-

- -

-
- - - - - - - - -
double VISU.DeformedShape.GetScale (  )  [inherited]
-
-
- -

-Gets the scale of the presentatable object. -

-

- -

-
- - - - - - - - -
boolean VISU.DeformedShape.IsColored (  )  [inherited]
-
-
- -

-This boolean method returns True if this deformed shape presentation is colored. -

-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.ShowColored (in boolean  theColored  )  [inherited]
-
-
- -

-Shows this presentation in colored mode.

Parameters:
- - -
theColored If this boolean parameter is True this presentable object will be shown in colored mode.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.DeformedShape.GetColor (  )  [inherited]
-
-
- -

-Gets the color of this presentable object.

Returns:
The color of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.DeformedShape.SetColor (in SALOMEDS::Color  theColor  )  [inherited]
-
-
- -

-Sets the color of this presentation.

Parameters:
- - -
theColor The color of this presentation. This parameter is taken from the Color enumeration.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.SetScaling (in Scaling  theScaling  )  [inherited]
-
-
- -

-Sets the type of scaling of the values reflected by the scalar bar.

Parameters:
- - -
theScaling The value of this parameter is taken from the Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.ScalarMap.GetScaling (  )  [inherited]
-
-
- -

-Gets the type of scaling of the values reflected by this presentation. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ScalarMap.SetRange (in double  theMin,
in double  theMax 
) [inherited]
-
-
- -

-Sets scalar range - min and max boundaries of the scalar bar.

Parameters:
- - - -
theMin Min boundary of the scalar bar.
theMax Max boundary of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
void VISU.ScalarMap.SetSourceRange (  )  [inherited]
-
-
- -

-Sets scalar range that corresponds to the source data. -

-

- -

-
- - - - - - - - - -
void VISU.ScalarMap.AddMeshOnGroup (in string  theGroupName  )  [inherited]
-
-
- -

-Add group as geometry of presentation.

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

- -

-
- - - - - - - - -
void VISU.ScalarMap.RemoveAllGeom (  )  [inherited]
-
-
- -

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

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetScalarMode (in long  theScalarMode  )  [inherited]
-
-
- -

-Sets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetScalarMode (  )  [inherited]
-
-
- -

-Gets the method of coloring of the elements composing a 3D presentation. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMin (  )  [inherited]
-
-
- -

-Gets the min boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetSourceMax (  )  [inherited]
-
-
- -

-Gets the max boundary of the scalar bar from source data. -

-

- -

-
- - - - - - - - -
boolean VISU.ColoredPrs3d.IsRangeFixed (  )  [inherited]
-
-
- -

-Defines whether the scalar range corresponds to the source data or not. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetPosition (in double  X,
in double  Y 
) [inherited]
-
-
- -

-Sets the position of the scalar bar origin on the screen.

Parameters:
- - - -
X Horizontal position. The value can be between 0 and 1.
Y Vertical position. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosX (  )  [inherited]
-
-
- -

-Gets horizontal position of the scalar bar origin. -

-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetPosY (  )  [inherited]
-
-
- -

-Gets vertical position of the scalar bar origin. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.ColoredPrs3d.SetSize (in double  theWidth,
in double  theHeight 
) [inherited]
-
-
- -

-Sets the size of the scalar bar.

Parameters:
- - - -
theWidth Width of this presentable object. The value can be between 0 and 1.
theHeight Height of this presentable object. The value can be between 0 and 1.
-
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetWidth (  )  [inherited]
-
-
- -

-Gets the width of this presentable object.

Returns:
A double value corresponding to the width of this presentable object.
- -
-

- -

-
- - - - - - - - -
double VISU.ColoredPrs3d.GetHeight (  )  [inherited]
-
-
- -

-Gets the height of this presentable object.

Returns:
A double value corresponding to the height of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetNbColors (in long  theNbColors  )  [inherited]
-
-
- -

-Sets the number of colors which will be used for presentation of this presentable object.

Parameters:
- - -
theNbColors A long value defining the number of colors.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetNbColors (  )  [inherited]
-
-
- -

-Gets the number of colors which will be used for visualization of this presentable object.

Returns:
A long value corresponding to the number of colors which will be used for visualization of this presentable object.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetLabels (in long  theNbLabels  )  [inherited]
-
-
- -

-Sets the number of labels which will be used for indication of color gradation of the scalar bar.

Parameters:
- - -
theNbLabels A long value defining the number of labels.
-
- -
-

- -

-
- - - - - - - - -
long VISU.ColoredPrs3d.GetLabels (  )  [inherited]
-
-
- -

-Gets the number of labels which will be used for indication of color gradation of the scalar bar.

Returns:
A long value corresponding to the number of labels which will be used for indication of color gradation of the scalar bar.
- -
-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetTitle (in string  theName  )  [inherited]
-
-
- -

-Sets the title of the scalar bar. By default - the name of the selected result is used.

Parameters:
- - -
theName String parameter defining the name of the scalar bar.
-
- -
-

- -

-
- - - - - - - - -
string VISU.ColoredPrs3d.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the scalar bar. -

-

- -

-
- - - - - - - - - -
void VISU.ColoredPrs3d.SetBarOrientation (in Orientation  theOrientation  )  [inherited]
-
-
- -

-Sets the type of orientation of the scalar bar (to provide backward compatibility).

Parameters:
- - -
theOrientation This parameter defines the orientation of the scalar bar. It is taken from the Orientaton enumeration.
-
- -
-

- -

-
- - - - - - - - -
Orientation VISU.ColoredPrs3d.GetBarOrientation (  )  [inherited]
-
-
- -

-Gets the type of orientation of the scalar bar (to provide backward compatibility). -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.SetOffset (in float  theDx,
in float  theDy,
in float  theDz 
) [inherited]
-
-
- -

-Move the 3D presentation according to the given offset parameters -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.Prs3d.GetOffset (out float  theDx,
out float  theDy,
out float  theDz 
) [inherited]
-
-
- -

-Gets offset parameters for the 3D presentation -

-

- -

-
- - - - - - - - -
float VISU.Prs3d.GetMemorySize (  )  [inherited]
-
-
- -

-Gets memory size actually used by the presentation (Mb). -

-

- -

-
- - - - - - - - -
void VISU.RemovableObject.RemoveFromStudy (  )  [inherited]
-
-
- -

-Remove object from study. -

-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors__inherit__graph.jpg deleted file mode 100644 index 5341b71c..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1Vectors__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html deleted file mode 100644 index 22bf9725..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View.html +++ /dev/null @@ -1,1077 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.View Interface Reference

View interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.View:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 OBJECTBROWSER
 VIEWER
 PYTHON
 MESSAGES
 TOP
 CENTER
 BOTTOM
 RIGHT
 LEFT
enum  ViewRepresentation { OBJECTBROWSER, -VIEWER, -PYTHON, -MESSAGES - }
 ViewRepresentation enumeration More...
enum  ViewPosition {
-  TOP, -CENTER, -BOTTOM, -RIGHT, -
-  LEFT -
- }

Public Member Functions

void ShowPart (in ViewRepresentation ViewRepr, in boolean state)
boolean IsPartShown (in ViewRepresentation ViewRepr)
void SplitRight ()
 Split workarea of this view.
void SplitLeft ()
 Split workarea of this view.
void SplitBottom ()
 Split workarea of this view.
void SplitTop ()
 Split workarea of this view.
void OnTop ()
void Attract (in View theView)
void AttractAll (in View theView)
void SetRelativePositionInSplitter (in double thePosition)
void SetRelativeSizeInSplitter (in double theSize)
void SetRelativePositionX (in double thePosition)
void SetRelativePositionY (in double thePosition)
void SetRelativeSizeX (in double theSize)
void SetRelativeSizeY (in double theSize)
void SetViewWidth (in long Width)
void SetViewHeight (in long Height)
long GetViewWidth ()
long GetViewHeight ()
void SetViewPositionHorizontal (in ViewPosition ViewPosHor)
void SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
void Restore ()
void Maximize ()
void SetTitle (in string theTitle)
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
SALOMEDS::Color GetBackground ()
void EraseAll ()
void DisplayAll ()
void Erase (in PrsObject thePrsObj)
void Display (in PrsObject thePrsObj)
void DisplayOnly (in PrsObject thePrsObj)
void Update ()
boolean SavePicture (in string theFileName)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-Contains a set of methods used by the View frame, which can be one of the following types: 3d, Table, XY plot. View interface is a base for all types of view interfaces. -

-


Member Enumeration Documentation

- -
- -
- -

-displaying part ("ALL" isn't setable)

Enumerator:
- - - - - -
OBJECTBROWSER  -
VIEWER  -
PYTHON  -
MESSAGES  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewPosition
-
-
- -

-

Enumerator:
- - - - - - -
TOP  -
CENTER  -
BOTTOM  -
RIGHT  -
LEFT  -
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
void VISU.View.ShowPart (in ViewRepresentation  ViewRepr,
in boolean  state 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - -
boolean VISU.View.IsPartShown (in ViewRepresentation  ViewRepr  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.SplitRight (  ) 
-
-
- -

-Horizontally split workarea of this view. This view is moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitLeft (  ) 
-
-
- -

-Horizontally split workarea of this view. This view stays in an old left area, others are moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitBottom (  ) 
-
-
- -

-Vertically split workarea of this view. This view is moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitTop (  ) 
-
-
- -

-Vertically split workarea of this view. This view stays in an old top area, others are moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.OnTop (  ) 
-
-
- -

-Put this view window on top of its work area. -

-

- -

-
- - - - - - - - - -
void VISU.View.Attract (in View  theView  ) 
-
-
- -

-Put theView in workarea of this view right after it. If theView was alone in its workarea, workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.AttractAll (in View  theView  ) 
-
-
- -

-Put all the view windows from workarea of theView in workarea of this view right after it. Workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one together with all its workarea.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionInSplitter (in double  thePosition  ) 
-
-
- -

-Set position of this view window relatively its splitter.

Parameters:
- - -
thePosition Desired position of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of positioning is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeInSplitter (in double  theSize  ) 
-
-
- -

-Set size of this view window relatively its splitter.

Parameters:
- - -
theSize Desired size of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of resizing is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionX (in double  thePosition  ) 
-
-
- -

-Set horizontal position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired horizontal position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionY (in double  thePosition  ) 
-
-
- -

-Set vertical position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired vertical position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeX (in double  theSize  ) 
-
-
- -

-Set horizontal size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired horizontal size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeY (in double  theSize  ) 
-
-
- -

-Set vertical size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired vertical size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetViewWidth (in long  Width  ) 
-
-
- -

-Old methods for view parameters management, they don't work now -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewHeight (in long  Height  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewWidth (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewHeight (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionHorizontal (in ViewPosition  ViewPosHor  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionVertical (in ViewPosition  ViewPosVer  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativePosition (in double  x,
in double  y 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativeSize (in double  x,
in double  y 
)
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Minimize (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Restore (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Maximize (  ) 
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the View frame.

Parameters:
- - -
theTitle String parameter defining the title of the View frame.
-
- -
-

- -

-
- - - - - - - - -
string VISU.View.GetTitle (  ) 
-
-
- -

-Gets the title of the View frame. -

-

- -

-
- - - - - - - - - -
void VISU.View.SetBackground (in SALOMEDS::Color  theColor  ) 
-
-
- -

-Sets background color of the View frame.

Parameters:
- - -
theColor Background color defined in SALOMEDS.Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.View.GetBackground (  ) 
-
-
- -

-Gets background color of the View frame. -

-

- -

-
- - - - - - - - -
void VISU.View.EraseAll (  ) 
-
-
- -

-Removes all presentations (presentable objects) from the view. -

-

- -

-
- - - - - - - - -
void VISU.View.DisplayAll (  ) 
-
-
- -

-Displays all presentations (presentable objects) in the view. -

-

- -

-
- - - - - - - - - -
void VISU.View.Erase (in PrsObject  thePrsObj  ) 
-
-
- -

-Removes a definite presentation (presentable object) from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be deleted.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.Display (in PrsObject  thePrsObj  ) 
-
-
- -

-Displays a definite presentation (presentable object) in the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.DisplayOnly (in PrsObject  thePrsObj  ) 
-
-
- -

-Allows to display only a definite presentation (presentable object) in the view. All other presentations are removed from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - -
void VISU.View.Update (  ) 
-
-
- -

-Updates the view. -

-

- -

-
- - - - - - - - - -
boolean VISU.View.SavePicture (in string  theFileName  ) 
-
-
- -

-Saves the view.

Parameters:
- - -
theFileName The name of the file where the view will be saved.
-
-
Returns:
True, if the view have been saved successfully.
- -
-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html deleted file mode 100644 index 6b980479..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D.html +++ /dev/null @@ -1,1834 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.View3D Interface Reference

3D view interface -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.View3D:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

typedef double XYZ [3]
 FRONT
 BACK
 LEFT
 RIGHT
 TOP
 BOTTOM
 XAxis
 YAxis
 ZAxis
enum  ViewType {
-  FRONT, -BACK, -LEFT, -RIGHT, -
-  TOP, -BOTTOM -
- }
enum  Axis { XAxis, -YAxis, -ZAxis - }
 OBJECTBROWSER
 VIEWER
 PYTHON
 MESSAGES
 CENTER
enum  ViewRepresentation { OBJECTBROWSER, -VIEWER, -PYTHON, -MESSAGES - }
 ViewRepresentation enumeration More...
enum  ViewPosition {
-  TOP, -CENTER, -BOTTOM, -RIGHT, -
-  LEFT -
- }

Public Member Functions

void FitAll ()
void SetView (in ViewType theType)
void SetPointOfView (in XYZ theCoord)
XYZ GetPointOfView ()
void SetViewUp (in XYZ theDir)
XYZ GetViewUp ()
void SetFocalPoint (in XYZ theDir)
XYZ GetFocalPoint ()
void SetParallelScale (in double theScale)
double GetParallelScale ()
void ScaleView (in Axis theAxis, in double theParam)
void RemoveScale ()
boolean SaveViewParams (in string theName)
boolean RestoreViewParams (in string theName)
PresentationType GetPresentationType (in ScalarMap thePrs)
string SetPresentationType (in ScalarMap thePrs, in PresentationType thePrsType)
boolean IsShrinked (in ScalarMap thePrs)
string SetShrinked (in ScalarMap thePrs, in boolean isShrinked)
boolean IsShaded (in ScalarMap thePrs)
string SetShaded (in ScalarMap thePrs, in boolean isShaded)
double GetOpacity (in ScalarMap thePrs)
string SetOpacity (in ScalarMap thePrs, in double theOpacity)
double GetLineWidth (in ScalarMap thePrs)
string SetLineWidth (in ScalarMap thePrs, in double theLineWidth)
void ShowPart (in ViewRepresentation ViewRepr, in boolean state)
boolean IsPartShown (in ViewRepresentation ViewRepr)
void SplitRight ()
 Split workarea of this view.
void SplitLeft ()
 Split workarea of this view.
void SplitBottom ()
 Split workarea of this view.
void SplitTop ()
 Split workarea of this view.
void OnTop ()
void Attract (in View theView)
void AttractAll (in View theView)
void SetRelativePositionInSplitter (in double thePosition)
void SetRelativeSizeInSplitter (in double theSize)
void SetRelativePositionX (in double thePosition)
void SetRelativePositionY (in double thePosition)
void SetRelativeSizeX (in double theSize)
void SetRelativeSizeY (in double theSize)
void SetViewWidth (in long Width)
void SetViewHeight (in long Height)
long GetViewWidth ()
long GetViewHeight ()
void SetViewPositionHorizontal (in ViewPosition ViewPosHor)
void SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
void Restore ()
void Maximize ()
void SetTitle (in string theTitle)
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
SALOMEDS::Color GetBackground ()
void EraseAll ()
void DisplayAll ()
void Erase (in PrsObject thePrsObj)
void Display (in PrsObject thePrsObj)
void DisplayOnly (in PrsObject thePrsObj)
void Update ()
boolean SavePicture (in string theFileName)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface contains a set of methods necessary for representation of objects in 3D space. -

-


Member Typedef Documentation

- -
-
- - - - -
typedef double VISU.View3D.XYZ[3]
-
-
- -

-Data type defining coordinates in 3D space. -

-

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::View3D::ViewType
-
-
- -

-This enumeration contains a set of elements determining a predefined point of view (position of the camera in 3D space relative to the presentable object).

Enumerator:
- - - - - - - -
FRONT  -
BACK  -
LEFT  -
RIGHT  -
TOP  -
BOTTOM  -
-
- -
-

- -

-
- - - - -
enum VISU::View3D::Axis
-
-
- -

-This enumeration contains a set of elements determining the axis

Enumerator:
- - - - -
XAxis  -
YAxis  -
ZAxis  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewRepresentation [inherited]
-
-
- -

-displaying part ("ALL" isn't setable)

Enumerator:
- - - - - -
OBJECTBROWSER  -
VIEWER  -
PYTHON  -
MESSAGES  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewPosition [inherited]
-
-
- -

-

Enumerator:
- - - - - - -
TOP  -
CENTER  -
BOTTOM  -
RIGHT  -
LEFT  -
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - -
void VISU.View3D.FitAll (  ) 
-
-
- -

-Makes all presentations, which are currently present in the view, completely visible. -

-

- -

-
- - - - - - - - - -
void VISU.View3D.SetView (in ViewType  theType  ) 
-
-
- -

-Sets a predefined point of view (FRONT, BACK, LEFT, RIGHT, TOP, BOTTOM). (In other words it means a predefined position of the camera in 3D space with respect to the object which is represented.) -

-

- -

-
- - - - - - - - - -
void VISU.View3D.SetPointOfView (in XYZ  theCoord  ) 
-
-
- -

-Sets the position of the camera in 3D space. This point is used as the first point of the vector defining the view direction of the camera. -

-

- -

-
- - - - - - - - -
XYZ VISU.View3D.GetPointOfView (  ) 
-
-
- -

-Gets the position of the camera in 3D space. This point is used as the first point of the vector defining the view direction of the camera. -

-

- -

-
- - - - - - - - - -
void VISU.View3D.SetViewUp (in XYZ  theDir  ) 
-
-
- -

-Sets the vertical line of the camera in 3D space. -

-

- -

-
- - - - - - - - -
XYZ VISU.View3D.GetViewUp (  ) 
-
-
- -

-Gets the vertical line of the camera in 3D space. -

-

- -

-
- - - - - - - - - -
void VISU.View3D.SetFocalPoint (in XYZ  theDir  ) 
-
-
- -

-Sets the point of sight of the camera. This point is used as the second point of the vector defining the view direction of the camera. -

-

- -

-
- - - - - - - - -
XYZ VISU.View3D.GetFocalPoint (  ) 
-
-
- -

-Gets the point of sight of the camera. This point is used as the second point of the vector defining the view direction of the camera. -

-

- -

-
- - - - - - - - - -
void VISU.View3D.SetParallelScale (in double  theScale  ) 
-
-
- -

-Zooming of the presentable object. Sets the scale. -

-

- -

-
- - - - - - - - -
double VISU.View3D.GetParallelScale (  ) 
-
-
- -

-Zooming of the presentable object. Gets the scale. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View3D.ScaleView (in Axis  theAxis,
in double  theParam 
)
-
-
- -

-Scaling of the view along a definite axis.

Parameters:
- - - -
theAxis The axis of the scaling
theParam The coefficient of the scaling
-
- -
-

- -

-
- - - - - - - - -
void VISU.View3D.RemoveScale (  ) 
-
-
- -

-Removes the scaling of the view. -

-

- -

-
- - - - - - - - - -
boolean VISU.View3D.SaveViewParams (in string  theName  ) 
-
-
- -

-Saves view parameters.

Returns:
True if the view parameters have been created, False if the parameters have been modified.
-
Parameters:
- - -
theName The name under which the view parameters will be saved.
-
- -
-

- -

-
- - - - - - - - - -
boolean VISU.View3D.RestoreViewParams (in string  theName  ) 
-
-
- -

-Restores view parameters.

Returns:
True if the view parameters have been found and applied to the view, False if the parameters with this name don't exist.
-
Parameters:
- - -
theName The name of the view parameters which will be restored.
-
- -
-

- -

-
- - - - - - - - - -
PresentationType VISU.View3D.GetPresentationType (in ScalarMap  thePrs  ) 
-
-
- -

-Get representation type of the given presentation in this view.

Parameters:
- - -
thePrs Object to get a representation type of.
-
-
Returns:
PresentationType Representation type of object in this view.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
string VISU.View3D.SetPresentationType (in ScalarMap  thePrs,
in PresentationType  thePrsType 
)
-
-
- -

-Set representation type of the given presentation in this view.

Parameters:
- - - -
thePrs Object to set a representation type of.
thePrsType Representation type to be set to the given object.
-
-
Returns:
Empty string in case of success, error description in case of failure.
- -
-

- -

-
- - - - - - - - - -
boolean VISU.View3D.IsShrinked (in ScalarMap  thePrs  ) 
-
-
- -

-Get shrink state of the given presentation in this view.

Parameters:
- - -
thePrs Object to get a shrink state of.
-
-
Returns:
TRUE if thePrs is shrinked in this view, FALSE overwise.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
string VISU.View3D.SetShrinked (in ScalarMap  thePrs,
in boolean  isShrinked 
)
-
-
- -

-Make the given presentation shrinked or not shrinked in this view.

Parameters:
- - - -
thePrs Object to change a shrink state of.
isShrinked Pass TRUE to make thePrs shrinked, FALSE overwise.
-
-
Returns:
Empty string in case of success, error description in case of failure.
- -
-

- -

-
- - - - - - - - - -
boolean VISU.View3D.IsShaded (in ScalarMap  thePrs  ) 
-
-
- -

-Get shading state of the given presentation in this view.

Parameters:
- - -
thePrs Object to get a shading state of.
-
-
Returns:
TRUE if thePrs is shaded in this view, FALSE overwise.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
string VISU.View3D.SetShaded (in ScalarMap  thePrs,
in boolean  isShaded 
)
-
-
- -

-Make the given presentation shaded or not shaded in this view.

Parameters:
- - - -
thePrs Object to set a shading state of.
isShaded Pass TRUE to make thePrs shaded, FALSE overwise.
-
-
Returns:
Empty string in case of success, error description in case of failure.
- -
-

- -

-
- - - - - - - - - -
double VISU.View3D.GetOpacity (in ScalarMap  thePrs  ) 
-
-
- -

-Get opacity of the given presentation in this view.

Parameters:
- - -
thePrs Object to get an opacity of.
-
-
Returns:
Opacity value in range [0, 1], 0 - transparent, 1 - opaque.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
string VISU.View3D.SetOpacity (in ScalarMap  thePrs,
in double  theOpacity 
)
-
-
- -

-Set opacity of the given presentation in this view.

Parameters:
- - - -
thePrs Object to set an opacity of.
theOpacity Opacity value [0, 1]. 0 - transparent, 1 - opaque.
-
-
Returns:
Empty string in case of success, error description in case of failure.
- -
-

- -

-
- - - - - - - - - -
double VISU.View3D.GetLineWidth (in ScalarMap  thePrs  ) 
-
-
- -

-Get line width of the given presentation in this view.

Parameters:
- - -
thePrs Object to get a line width of.
-
-
Returns:
Line width of thePrs in this view.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
string VISU.View3D.SetLineWidth (in ScalarMap  thePrs,
in double  theLineWidth 
)
-
-
- -

-Set line width of the given presentation in this view.

Parameters:
- - - -
thePrs Object to set a line width of.
theLineWidth Line width value. Recommended values are in range [1, 10].
-
-
Returns:
Empty string in case of success, error description in case of failure.
- -
-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.ShowPart (in ViewRepresentation  ViewRepr,
in boolean  state 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
boolean VISU.View.IsPartShown (in ViewRepresentation  ViewRepr  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.SplitRight (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view is moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitLeft (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view stays in an old left area, others are moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitBottom (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view is moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitTop (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view stays in an old top area, others are moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.OnTop (  )  [inherited]
-
-
- -

-Put this view window on top of its work area. -

-

- -

-
- - - - - - - - - -
void VISU.View.Attract (in View  theView  )  [inherited]
-
-
- -

-Put theView in workarea of this view right after it. If theView was alone in its workarea, workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.AttractAll (in View  theView  )  [inherited]
-
-
- -

-Put all the view windows from workarea of theView in workarea of this view right after it. Workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one together with all its workarea.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionInSplitter (in double  thePosition  )  [inherited]
-
-
- -

-Set position of this view window relatively its splitter.

Parameters:
- - -
thePosition Desired position of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of positioning is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeInSplitter (in double  theSize  )  [inherited]
-
-
- -

-Set size of this view window relatively its splitter.

Parameters:
- - -
theSize Desired size of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of resizing is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionX (in double  thePosition  )  [inherited]
-
-
- -

-Set horizontal position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired horizontal position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionY (in double  thePosition  )  [inherited]
-
-
- -

-Set vertical position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired vertical position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeX (in double  theSize  )  [inherited]
-
-
- -

-Set horizontal size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired horizontal size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeY (in double  theSize  )  [inherited]
-
-
- -

-Set vertical size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired vertical size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetViewWidth (in long  Width  )  [inherited]
-
-
- -

-Old methods for view parameters management, they don't work now -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewHeight (in long  Height  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewWidth (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewHeight (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionHorizontal (in ViewPosition  ViewPosHor  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionVertical (in ViewPosition  ViewPosVer  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativePosition (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativeSize (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Minimize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Restore (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Maximize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetTitle (in string  theTitle  )  [inherited]
-
-
- -

-Sets the title of the View frame.

Parameters:
- - -
theTitle String parameter defining the title of the View frame.
-
- -
-

- -

-
- - - - - - - - -
string VISU.View.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the View frame. -

-

- -

-
- - - - - - - - - -
void VISU.View.SetBackground (in SALOMEDS::Color  theColor  )  [inherited]
-
-
- -

-Sets background color of the View frame.

Parameters:
- - -
theColor Background color defined in SALOMEDS.Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.View.GetBackground (  )  [inherited]
-
-
- -

-Gets background color of the View frame. -

-

- -

-
- - - - - - - - -
void VISU.View.EraseAll (  )  [inherited]
-
-
- -

-Removes all presentations (presentable objects) from the view. -

-

- -

-
- - - - - - - - -
void VISU.View.DisplayAll (  )  [inherited]
-
-
- -

-Displays all presentations (presentable objects) in the view. -

-

- -

-
- - - - - - - - - -
void VISU.View.Erase (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Removes a definite presentation (presentable object) from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be deleted.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.Display (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Displays a definite presentation (presentable object) in the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.DisplayOnly (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Allows to display only a definite presentation (presentable object) in the view. All other presentations are removed from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - -
void VISU.View.Update (  )  [inherited]
-
-
- -

-Updates the view. -

-

- -

-
- - - - - - - - - -
boolean VISU.View.SavePicture (in string  theFileName  )  [inherited]
-
-
- -

-Saves the view.

Parameters:
- - -
theFileName The name of the file where the view will be saved.
-
-
Returns:
True, if the view have been saved successfully.
- -
-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D__inherit__graph.jpg deleted file mode 100644 index ddfcb301..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View3D__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html deleted file mode 100644 index b7d573f5..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.ViewManager Interface Reference

Interface of the ViewManager. -More... -

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.ViewManager:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - -

Public Member Functions

View GetCurrentView ()
 Getting an active View Frame.
View3D Create3DView ()
 Creation of a 3d View.
TableView CreateTableView (in Table theTable)
 Creation of a Table View.
XYPlot CreateXYPlot ()
 Creation of a 2D plot View.
void Destroy (in View theView)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-The ViewManager is necessary for work with view windows (creation and deletion). -

-


Member Function Documentation

- -
-
- - - - - - - - -
View VISU.ViewManager.GetCurrentView (  ) 
-
-
- -

-Returns an object reference to the active View Frame. Type of the View must be checked.

Note:

-Returns nil if there are no views currently opened.
- -
-

- -

-
- - - - - - - - -
View3D VISU.ViewManager.Create3DView (  ) 
-
-
- -

-Returns an object reference to the newly created 3D View. -

-

- -

-
- - - - - - - - - -
TableView VISU.ViewManager.CreateTableView (in Table  theTable  ) 
-
-
- -

-Returns an object reference to the newly created Table View. -

-

- -

-
- - - - - - - - -
XYPlot VISU.ViewManager.CreateXYPlot (  ) 
-
-
- -

-Returns an object reference to the newly created 2D plot View. -

-

- -

-
- - - - - - - - - -
void VISU.ViewManager.Destroy (in View  theView  ) 
-
-
- -

-Deletes a definite view.

Parameters:
- - -
theView The view which should be deleted.
-
- -
-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager__inherit__graph.jpg deleted file mode 100644 index e02fe030..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1ViewManager__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View__inherit__graph.jpg deleted file mode 100644 index 6f161cfa..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1View__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html deleted file mode 100644 index 9c519f2b..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot.html +++ /dev/null @@ -1,1724 +0,0 @@ - - - - - - Main Page - - - - -  - - - - -

VISU.XYPlot Interface Reference

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

-import "VISU_Gen.idl"; -

-Inheritance diagram for VISU.XYPlot:

Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Public Types

 POINTS
 MULTYLINE
 SPLINE
enum  CurveType { POINTS, -MULTYLINE, -SPLINE - }
 OBJECTBROWSER
 VIEWER
 PYTHON
 MESSAGES
 TOP
 CENTER
 BOTTOM
 RIGHT
 LEFT
enum  ViewRepresentation { OBJECTBROWSER, -VIEWER, -PYTHON, -MESSAGES - }
 ViewRepresentation enumeration More...
enum  ViewPosition {
-  TOP, -CENTER, -BOTTOM, -RIGHT, -
-  LEFT -
- }

Public Member Functions

void SetSubTitle (in string theTitle)
string GetSubTitle ()
void SetCurveType (in CurveType theType)
CurveType GetCurveType ()
void SetMarkerSize (in long theSize)
long GetMarkerSize ()
void EnableXGrid (in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor)
void EnableYGrid (in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor)
void SetHorScaling (in Scaling theScaling)
Scaling GetHorScaling ()
void SetVerScaling (in Scaling theScaling)
Scaling GetVerScaling ()
void SetXTitle (in string theTitle)
string GetXTitle ()
void SetYTitle (in string theTitle)
string GetYTitle ()
void ShowLegend (in boolean theShowing)
void FitAll ()
void FitXRange (in double xMin, in double xMax)
void FitYRange (in double yMin, in double yMax)
void FitRange (in double xMin, in double xMax, in double yMin, in double yMax)
void GetFitRanges (out double xMin, out double xMax, out double yMin, out double yMax)
void ShowPart (in ViewRepresentation ViewRepr, in boolean state)
boolean IsPartShown (in ViewRepresentation ViewRepr)
void SplitRight ()
 Split workarea of this view.
void SplitLeft ()
 Split workarea of this view.
void SplitBottom ()
 Split workarea of this view.
void SplitTop ()
 Split workarea of this view.
void OnTop ()
void Attract (in View theView)
void AttractAll (in View theView)
void SetRelativePositionInSplitter (in double thePosition)
void SetRelativeSizeInSplitter (in double theSize)
void SetRelativePositionX (in double thePosition)
void SetRelativePositionY (in double thePosition)
void SetRelativeSizeX (in double theSize)
void SetRelativeSizeY (in double theSize)
void SetViewWidth (in long Width)
void SetViewHeight (in long Height)
long GetViewWidth ()
long GetViewHeight ()
void SetViewPositionHorizontal (in ViewPosition ViewPosHor)
void SetViewPositionVertical (in ViewPosition ViewPosVer)
void SetRelativePosition (in double x, in double y)
void SetRelativeSize (in double x, in double y)
void Minimize ()
void Restore ()
void Maximize ()
void SetTitle (in string theTitle)
string GetTitle ()
void SetBackground (in SALOMEDS::Color theColor)
SALOMEDS::Color GetBackground ()
void EraseAll ()
void DisplayAll ()
void Erase (in PrsObject thePrsObj)
void Display (in PrsObject thePrsObj)
void DisplayOnly (in PrsObject thePrsObj)
void Update ()
boolean SavePicture (in string theFileName)
IdType GetID ()
VISUType GetType ()
-

Detailed Description

-This interface is used for creation of a view necessary for presentation of a XY plot generated on the basis of one or several curve lines. -

-


Member Enumeration Documentation

- -
-
- - - - -
enum VISU::XYPlot::CurveType
-
-
- -

-This enumeration contains a set of elements determining the type of the curve lines, which will be displayed in your XY plot.

Enumerator:
- - - - -
POINTS  -
MULTYLINE  -
SPLINE  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewRepresentation [inherited]
-
-
- -

-displaying part ("ALL" isn't setable)

Enumerator:
- - - - - -
OBJECTBROWSER  -
VIEWER  -
PYTHON  -
MESSAGES  -
-
- -
-

- -

-
- - - - -
enum VISU::View::ViewPosition [inherited]
-
-
- -

-

Enumerator:
- - - - - - -
TOP  -
CENTER  -
BOTTOM  -
RIGHT  -
LEFT  -
-
- -
-

-


Member Function Documentation

- -
-
- - - - - - - - - -
void VISU.XYPlot.SetSubTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the XY plot

Parameters:
- - -
theTitle The title of the XY plot
-
- -
-

- -

-
- - - - - - - - -
string VISU.XYPlot.GetSubTitle (  ) 
-
-
- -

-Gets the title of the XY plot -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetCurveType (in CurveType  theType  ) 
-
-
- -

-Sets the type of the curve lines.

Parameters:
- - -
theType The type of the curve lines taken from CurveType enumeration.
-
- -
-

- -

-
- - - - - - - - -
CurveType VISU.XYPlot.GetCurveType (  ) 
-
-
- -

-Gets the type of the curve lines. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetMarkerSize (in long  theSize  ) 
-
-
- -

-Sets the size of the markers (data points) with help of which the curve is constructed on the graphics.

Parameters:
- - -
theSize Long value defining the size of the markers.
-
- -
-

- -

-
- - - - - - - - -
long VISU.XYPlot.GetMarkerSize (  ) 
-
-
- -

-Gets the size of the markers (data points) with help of which the curve is constructed on the graphics. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.EnableXGrid (in boolean  theMajor,
in long  theNumMajor,
in boolean  theMinor,
in long  theNumMinor 
)
-
-
- -

-Enable/disables X-axis grid of the 2D plot. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.EnableYGrid (in boolean  theMajor,
in long  theNumMajor,
in boolean  theMinor,
in long  theNumMinor 
)
-
-
- -

-Enable/disables Y-axis grid of the 2D plot. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetHorScaling (in Scaling  theScaling  ) 
-
-
- -

-Sets horizontal scaling of the 2D plot.

Parameters:
- - -
theScaling Type of scaling taken from Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.XYPlot.GetHorScaling (  ) 
-
-
- -

-Gets the type horizontal scaling of the 2D plot. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetVerScaling (in Scaling  theScaling  ) 
-
-
- -

-Sets vertical scaling of the 2D plot.

Parameters:
- - -
theScaling Type of scaling taken from Scaling enumeration.
-
- -
-

- -

-
- - - - - - - - -
Scaling VISU.XYPlot.GetVerScaling (  ) 
-
-
- -

-Gets the type vertical scaling of the 2D plot. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetXTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the X-axis of the plot.

Parameters:
- - -
theTitle String value defining the title of the X-axis of the plot.
-
- -
-

- -

-
- - - - - - - - -
string VISU.XYPlot.GetXTitle (  ) 
-
-
- -

-Gets the title of the X-axis of the plot. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.SetYTitle (in string  theTitle  ) 
-
-
- -

-Sets the title of the Y-axis of the plot.

Parameters:
- - -
theTitle String value defining the title of the X-axis of the plot.
-
- -
-

- -

-
- - - - - - - - -
string VISU.XYPlot.GetYTitle (  ) 
-
-
- -

-Gets the title of the Y-axis of the plot. -

-

- -

-
- - - - - - - - - -
void VISU.XYPlot.ShowLegend (in boolean  theShowing  ) 
-
-
- -

-Shows/hides the legend (description) of the 2D plot. -

-

- -

-
- - - - - - - - -
void VISU.XYPlot.FitAll (  ) 
-
-
- -

-Shrinks and enlarges the 2D plot to fit the 2D viewer. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.FitXRange (in double  xMin,
in double  xMax 
)
-
-
- -

-Set range of the 2D plot to X axis of the 2D viewer. -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.FitYRange (in double  yMin,
in double  yMax 
)
-
-
- -

-Set range of the 2D plot to Y axis of the 2D viewer. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.FitRange (in double  xMin,
in double  xMax,
in double  yMin,
in double  yMax 
)
-
-
- -

-Set range of the 2D plot to XY axis of the 2D viewer. -

-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void VISU.XYPlot.GetFitRanges (out double  xMin,
out double  xMax,
out double  yMin,
out double  yMax 
)
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.ShowPart (in ViewRepresentation  ViewRepr,
in boolean  state 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
boolean VISU.View.IsPartShown (in ViewRepresentation  ViewRepr  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.SplitRight (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view is moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitLeft (  )  [inherited]
-
-
- -

-Horizontally split workarea of this view. This view stays in an old left area, others are moved in a new right area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitBottom (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view is moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.SplitTop (  )  [inherited]
-
-
- -

-Vertically split workarea of this view. This view stays in an old top area, others are moved in a new bottom area. -

-

- -

-
- - - - - - - - -
void VISU.View.OnTop (  )  [inherited]
-
-
- -

-Put this view window on top of its work area. -

-

- -

-
- - - - - - - - - -
void VISU.View.Attract (in View  theView  )  [inherited]
-
-
- -

-Put theView in workarea of this view right after it. If theView was alone in its workarea, workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.AttractAll (in View  theView  )  [inherited]
-
-
- -

-Put all the view windows from workarea of theView in workarea of this view right after it. Workarea of theView will be destroyed. If theView was in the same workarea with this view, simple reordering will take place.

Parameters:
- - -
theView A view window to be attracted to this one together with all its workarea.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionInSplitter (in double  thePosition  )  [inherited]
-
-
- -

-Set position of this view window relatively its splitter.

Parameters:
- - -
thePosition Desired position of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of positioning is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeInSplitter (in double  theSize  )  [inherited]
-
-
- -

-Set size of this view window relatively its splitter.

Parameters:
- - -
theSize Desired size of this view window relatively its splitter. Meaningfull values lays in range [0..1].
-
-Direction of resizing is defined by the splitter orientation. -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionX (in double  thePosition  )  [inherited]
-
-
- -

-Set horizontal position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired horizontal position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativePositionY (in double  thePosition  )  [inherited]
-
-
- -

-Set vertical position of this view window relatively its workstack.

Parameters:
- - -
thePosition Desired vertical position of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeX (in double  theSize  )  [inherited]
-
-
- -

-Set horizontal size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired horizontal size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetRelativeSizeY (in double  theSize  )  [inherited]
-
-
- -

-Set vertical size of this view window relatively its workstack.

Parameters:
- - -
theSize Desired vertical size of this view window relatively its workstack. Meaningfull values lays in range [0..1].
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.SetViewWidth (in long  Width  )  [inherited]
-
-
- -

-Old methods for view parameters management, they don't work now -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewHeight (in long  Height  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewWidth (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
long VISU.View.GetViewHeight (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionHorizontal (in ViewPosition  ViewPosHor  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetViewPositionVertical (in ViewPosition  ViewPosVer  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativePosition (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - - - - - - - - - - -
void VISU.View.SetRelativeSize (in double  x,
in double  y 
) [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Minimize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Restore (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - -
void VISU.View.Maximize (  )  [inherited]
-
-
- -

- -

-

- -

-
- - - - - - - - - -
void VISU.View.SetTitle (in string  theTitle  )  [inherited]
-
-
- -

-Sets the title of the View frame.

Parameters:
- - -
theTitle String parameter defining the title of the View frame.
-
- -
-

- -

-
- - - - - - - - -
string VISU.View.GetTitle (  )  [inherited]
-
-
- -

-Gets the title of the View frame. -

-

- -

-
- - - - - - - - - -
void VISU.View.SetBackground (in SALOMEDS::Color  theColor  )  [inherited]
-
-
- -

-Sets background color of the View frame.

Parameters:
- - -
theColor Background color defined in SALOMEDS.Color enumeration.
-
- -
-

- -

-
- - - - - - - - -
SALOMEDS::Color VISU.View.GetBackground (  )  [inherited]
-
-
- -

-Gets background color of the View frame. -

-

- -

-
- - - - - - - - -
void VISU.View.EraseAll (  )  [inherited]
-
-
- -

-Removes all presentations (presentable objects) from the view. -

-

- -

-
- - - - - - - - -
void VISU.View.DisplayAll (  )  [inherited]
-
-
- -

-Displays all presentations (presentable objects) in the view. -

-

- -

-
- - - - - - - - - -
void VISU.View.Erase (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Removes a definite presentation (presentable object) from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be deleted.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.Display (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Displays a definite presentation (presentable object) in the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - - -
void VISU.View.DisplayOnly (in PrsObject  thePrsObj  )  [inherited]
-
-
- -

-Allows to display only a definite presentation (presentable object) in the view. All other presentations are removed from the view.

Parameters:
- - -
thePrsObj The presentation (presentable object) which should be displayed.
-
- -
-

- -

-
- - - - - - - - -
void VISU.View.Update (  )  [inherited]
-
-
- -

-Updates the view. -

-

- -

-
- - - - - - - - - -
boolean VISU.View.SavePicture (in string  theFileName  )  [inherited]
-
-
- -

-Saves the view.

Parameters:
- - -
theFileName The name of the file where the view will be saved.
-
-
Returns:
True, if the view have been saved successfully.
- -
-

- -

-
- - - - - - - - -
IdType VISU.Base.GetID (  )  [inherited]
-
-
- -

-Returns ID of the object. -

-

- -

-
- - - - - - - - -
VISUType VISU.Base.GetType (  )  [inherited]
-
-
- -

-Returns the type of the presentable object -

-

- -

- - diff --git a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot__inherit__graph.jpg b/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot__inherit__graph.jpg deleted file mode 100644 index ba97d424..00000000 Binary files a/doc/salome/gui/VISU/visugenidl_doc/interfaceVISU_1_1XYPlot__inherit__graph.jpg and /dev/null differ diff --git a/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html b/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html deleted file mode 100644 index 8de0ca8a..00000000 --- a/doc/salome/gui/VISU/visugenidl_doc/namespaceVISU.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - 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  ColoredPrs3dHolder
 ColoredPrs3dHolder interface. Interface of 3d presentation's holder, which represents colored 3d presentations, created on fields. It is publishing in the object browser in a separate folder and can be controled by viewer's slider. More...
interface  ColoredPrs3dCache
 ColoredPrs3dCache interface. This interface is responsible for memory management of 3d presentations. One cache corresponds to one study. 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
 Deformed shape and Scalar Map 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, -TISOSURFACES, -TDEFORMEDSHAPE, -
-  TSCALARMAPONDEFORMEDSHAPE, -TGAUSSPOINTS, -TPLOT3D, -TCUTPLANES, -
-  TCUTLINES, -TVECTORS, -TSTREAMLINES, -TVISUGEN, -
-  TVIEWMANAGER, -TRESULT, -TXYPLOT, -TTABLEVIEW, -
-  TVIEW3D, -TGAUSSVIEW, -TENTITY, -TFAMILY, -
-  TGROUP, -TFIELD, -TTIMESTAMP, -TANIMATION, -
-  TCOLOREDPRS3DHOLDER, -TCOLOREDPRS3DCACHE, -TPART, -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
TISOSURFACES  -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
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.
TCOLOREDPRS3DHOLDER  -Colored 3D presentation holder
TCOLOREDPRS3DCACHE  -Colored 3D presentation cache
TPART  -MULTIPR: part of a mesh
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  -
-
- -
-

- -

- - diff --git a/doc/salome/gui/VISU/whdata/whftdata.js b/doc/salome/gui/VISU/whdata/whftdata.js deleted file mode 100755 index addf2622..00000000 --- a/doc/salome/gui/VISU/whdata/whftdata.js +++ /dev/null @@ -1,25 +0,0 @@ -// WebHelp 5.10.001 -var gTEA = new Array(); -function aTE(sTopicTitle, sTopicURL) -{ - var len = gTEA.length; - gTEA[len] = new topicEntry(sTopicTitle, sTopicURL); -} - -function topicEntry(sTopicTitle, sTopicURL) -{ - this.sTopicTitle = sTopicTitle; - this.sTopicURL = sTopicURL; -} - -function window_OnLoad() -{ - if (parent && parent != this) { - if (parent.putFtsTData) - { - parent.putFtsTData(gTEA); - } - } -} - -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whftdata0.htm b/doc/salome/gui/VISU/whdata/whftdata0.htm deleted file mode 100755 index 5acacd5e..00000000 --- a/doc/salome/gui/VISU/whdata/whftdata0.htm +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whdata/whfts.htm b/doc/salome/gui/VISU/whdata/whfts.htm deleted file mode 100755 index 15fe687b..00000000 --- a/doc/salome/gui/VISU/whdata/whfts.htm +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whdata/whfts.js b/doc/salome/gui/VISU/whdata/whfts.js deleted file mode 100755 index 54246f69..00000000 --- a/doc/salome/gui/VISU/whdata/whfts.js +++ /dev/null @@ -1,40 +0,0 @@ -// WebHelp 5.10.001 -var gaFileMapping = new Array(); -var gaFileTopicMapping = new Array(); - -function fileMapping(sStartKey, sEndKey, sFileName) -{ - this.sStartKey = sStartKey; - this.sEndKey = sEndKey; - this.sFileName = sFileName; - this.aFtsKeys = null; -} - -function fileTopicMapping(nIdBegin, nIdEnd, sFileName) -{ - this.nBegin = nIdBegin; - this.nEnd = nIdEnd; - this.sFileName = sFileName; - this.aTopics = null; -} - - -function iWM(sStartKey, sEndKey, sFileName) -{ - gaFileMapping[gaFileMapping.length] = new fileMapping(sStartKey, sEndKey, sFileName); -} - -function window_OnLoad() -{ - if (parent && parent != this && parent.ftsReady) - { - parent.ftsReady(gaFileMapping, gaFileTopicMapping); - } -} - -function iTM(nIdBegin, nIdEnd, sFileName) -{ - gaFileTopicMapping[gaFileTopicMapping.length] = new fileTopicMapping(nIdBegin, nIdEnd, sFileName); -} - -window.onload = window_OnLoad; diff --git a/doc/salome/gui/VISU/whdata/whfwdata.js b/doc/salome/gui/VISU/whdata/whfwdata.js deleted file mode 100755 index 8340b59d..00000000 --- a/doc/salome/gui/VISU/whdata/whfwdata.js +++ /dev/null @@ -1,37 +0,0 @@ -// WebHelp 5.10.001 -var gWEA = new Array(); -function aWE() -{ - var len = gWEA.length; - gWEA[len] = new ftsEntry(aWE.arguments); -} - -function ftsEntry(fn_arguments) -{ - if (fn_arguments.length && fn_arguments.length >= 1) - { - this.sItemName = fn_arguments[0]; - this.aTopics = null; - var nLen = fn_arguments.length; - if (nLen > 1) - { - this.aTopics = new Array(); - for (var i = 0; i < nLen - 1; i ++ ) - { - this.aTopics[i] = fn_arguments[i + 1]; - } - } - } -} - -function window_OnLoad() -{ - if (parent && parent != this) { - if (parent.putFtsWData) - { - parent.putFtsWData(gWEA); - } - } -} - -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whfwdata0.htm b/doc/salome/gui/VISU/whdata/whfwdata0.htm deleted file mode 100755 index 3307ee33..00000000 --- a/doc/salome/gui/VISU/whdata/whfwdata0.htm +++ /dev/null @@ -1,902 +0,0 @@ - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whdata/whgdata.js b/doc/salome/gui/VISU/whdata/whgdata.js deleted file mode 100755 index e38a107b..00000000 --- a/doc/salome/gui/VISU/whdata/whgdata.js +++ /dev/null @@ -1,26 +0,0 @@ -// WebHelp 5.10.001 -var gIEA = new Array(); -function aGE(sName, sDef) -{ - var len = gIEA.length; - gIEA[len] = new gloEntry(sName, sDef); -} - -function gloEntry(sName, sDef) -{ - this.sName = sName; - this.sDef = sDef; - this.nNKOff = 0; -} - -function window_OnLoad() -{ - if (parent && parent != this) { - if (parent.putData) - { - parent.putData(gIEA); - } - } -} - -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whgdata0.htm b/doc/salome/gui/VISU/whdata/whgdata0.htm deleted file mode 100755 index 3865725f..00000000 --- a/doc/salome/gui/VISU/whdata/whgdata0.htm +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whdata/whglo.htm b/doc/salome/gui/VISU/whdata/whglo.htm deleted file mode 100755 index 9d7ac79f..00000000 --- a/doc/salome/gui/VISU/whdata/whglo.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whglo.js b/doc/salome/gui/VISU/whdata/whglo.js deleted file mode 100755 index c34fb24b..00000000 --- a/doc/salome/gui/VISU/whdata/whglo.js +++ /dev/null @@ -1,34 +0,0 @@ -// WebHelp 5.10.001 -var gaFileMapping = new Array(); -function fileMapping(sBK, sEK, sFileName, nNum) -{ - this.sBK = sBK; - this.sEK = sEK; - this.sFileName = sFileName; - this.aKs = null; - this.nNum = nNum; - this.oUsedItems = null; -} - - -function iFM(sBK, sEK, sFileName, nNum) -{ - var i = gaFileMapping.length; - gaFileMapping[i] = new fileMapping(sBK, sEK, sFileName, nNum); - if (i == 0) { - gaFileMapping[i].nTotal = nNum; - } - else { - gaFileMapping[i].nTotal = nNum + gaFileMapping[i - 1].nTotal; - } -} - -function window_OnLoad() -{ - if (parent && parent != this && parent.projReady) - { - parent.projReady(gaFileMapping); - } -} - -window.onload = window_OnLoad; diff --git a/doc/salome/gui/VISU/whdata/whidata.js b/doc/salome/gui/VISU/whdata/whidata.js deleted file mode 100755 index a9218473..00000000 --- a/doc/salome/gui/VISU/whdata/whidata.js +++ /dev/null @@ -1,89 +0,0 @@ -// WebHelp 5.10.001 -// const strings -var gIEA = new Array(); -function aIE() -{ - var len = gIEA.length; - gIEA[len] = new indexEntry(aIE.arguments); -} - -function topic(sName, sURL) -{ - this.sName = sName; - this.sURL = sURL; -} - -function indexEntry(fn_arguments) -{ - if (fn_arguments.length && fn_arguments.length >= 3) - { - this.nType = fn_arguments[0]; - this.nPKOff = 0; - this.nNKOff = fn_arguments[1]; - this.sName = fn_arguments[2]; - this.aTopics = null; - var nLen = fn_arguments.length; - if (Math.floor(nLen / 2) * 2 == nLen) - { - this.sTarget = fn_arguments[3]; - if (nLen > 5) - { - this.aTopics = new Array(); - for (var i = 0; i < (nLen - 5)/2; i++) - { - this.aTopics[i] = new topic(fn_arguments[i * 2 + 4], fn_arguments[i * 2 + 5]); - } - } - - } - else - { - if (nLen > 4) - { - this.aTopics = new Array(); - for (var i = 0; i < (nLen - 4)/2; i++) - { - this.aTopics[i] = new topic(fn_arguments[i * 2 + 3], fn_arguments[i * 2 + 4]); - } - } - } - } -} - -function getIndexTopicMappingList(nItemIndex) -{ - var sTopics = ""; - if (gIEA.length > nItemIndex) - { - if (gIEA[nItemIndex].aTopics) - { - var i = 0; - var nLen = gIEA[nItemIndex].aTopics.length; - for (i = 0; i < nLen; i ++) - { - sTopics += "," + gIEA[nItemIndex].aTopics[i]; - } - } - } - return sTopics; -} - -function window_OnLoad() -{ - if (parent && parent != this) { - if (parent.putData) - { - for (var i = 0; i < gIEA.length; i ++ ) - { - if (gIEA[i].nNKOff != 0 && i + gIEA[i].nNKOff + 1 < gIEA.length) - { - - gIEA[i + gIEA[i].nNKOff + 1].nPKOff = gIEA[i].nNKOff; - } - } - parent.putData(gIEA); - } - } -} - -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whidx.htm b/doc/salome/gui/VISU/whdata/whidx.htm deleted file mode 100755 index a049a96f..00000000 --- a/doc/salome/gui/VISU/whdata/whidx.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whidx.js b/doc/salome/gui/VISU/whdata/whidx.js deleted file mode 100755 index c34fb24b..00000000 --- a/doc/salome/gui/VISU/whdata/whidx.js +++ /dev/null @@ -1,34 +0,0 @@ -// WebHelp 5.10.001 -var gaFileMapping = new Array(); -function fileMapping(sBK, sEK, sFileName, nNum) -{ - this.sBK = sBK; - this.sEK = sEK; - this.sFileName = sFileName; - this.aKs = null; - this.nNum = nNum; - this.oUsedItems = null; -} - - -function iFM(sBK, sEK, sFileName, nNum) -{ - var i = gaFileMapping.length; - gaFileMapping[i] = new fileMapping(sBK, sEK, sFileName, nNum); - if (i == 0) { - gaFileMapping[i].nTotal = nNum; - } - else { - gaFileMapping[i].nTotal = nNum + gaFileMapping[i - 1].nTotal; - } -} - -function window_OnLoad() -{ - if (parent && parent != this && parent.projReady) - { - parent.projReady(gaFileMapping); - } -} - -window.onload = window_OnLoad; diff --git a/doc/salome/gui/VISU/whdata/whtdata.js b/doc/salome/gui/VISU/whdata/whtdata.js deleted file mode 100755 index 0558e198..00000000 --- a/doc/salome/gui/VISU/whdata/whtdata.js +++ /dev/null @@ -1,64 +0,0 @@ -// WebHelp 5.10.001 -var gTEA = new Array(); -function aTE() -{ - gTEA[gTEA.length] = new tocEntry(aTE.arguments); -} - -function tocEntry(fn_arguments) -{ - if (fn_arguments.length < 3) - { - alert ("data format wrong!!!"); - return; - } - - this.nType = fn_arguments[0]; - this.nContents = fn_arguments[1]; - this.sItemName = fn_arguments[2]; - - if (this.nType == 1 || this.nType == 2 || this.nType == 16) - { - if (fn_arguments.length > 3) - { - this.sItemURL = fn_arguments[3]; - if (fn_arguments.length > 4) - { - this.sTarget = fn_arguments[4]; - if (fn_arguments.length > 5) - this.sIconRef = fn_arguments[5]; - } - } - } - if (this.nType == 4 || this.nType == 8) - { - if (fn_arguments.length > 3) - { - this.sRefURL = fn_arguments[3]; - if (this.nType == 4) - { - if(this.sRefURL.lastIndexOf("/")!=this.sRefURL.length-1) - this.sRefURL+="/"; - } - if (fn_arguments.length > 4) - { - this.sItemURL = fn_arguments[4]; - if (fn_arguments.length > 5) - { - this.sTarget = fn_arguments[5]; - if (fn_arguments.length > 6) - this.sIconRef = fn_arguments[6]; - } - } - } - } -} - - -function window_OnLoad() -{ - if (parent && parent != this && parent.putData) { - parent.putData(gTEA); - } -} -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whtdata0.htm b/doc/salome/gui/VISU/whdata/whtdata0.htm deleted file mode 100755 index 67da6bc2..00000000 --- a/doc/salome/gui/VISU/whdata/whtdata0.htm +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whdata/whtoc.htm b/doc/salome/gui/VISU/whdata/whtoc.htm deleted file mode 100755 index 459c3e31..00000000 --- a/doc/salome/gui/VISU/whdata/whtoc.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whdata/whtoc.js b/doc/salome/gui/VISU/whdata/whtoc.js deleted file mode 100755 index 62de5a13..00000000 --- a/doc/salome/gui/VISU/whdata/whtoc.js +++ /dev/null @@ -1,31 +0,0 @@ -// WebHelp 5.10.001 -// const strings -var gaProj = new Array(); -var gsRoot = ""; - -function setRoot(sRoot) -{ - gsRoot = sRoot -} - -function aPE(sProjPath, sRootPath) -{ - gaProj[gaProj.length] = new tocProjEntry(sProjPath, sRootPath); -} - -function tocProjEntry(sProjPath, sRootPath) -{ - if(sProjPath.lastIndexOf("/")!=sProjPath.length-1) - sProjPath+="/"; - this.sPPath = sProjPath; - this.sRPath = sRootPath; -} - - -function window_OnLoad() -{ - if (parent && parent != this && parent.projReady) { - parent.projReady(gsRoot, gaProj); - } -} -window.onload = window_OnLoad; \ No newline at end of file diff --git a/doc/salome/gui/VISU/whgdata/whexpbar.gif b/doc/salome/gui/VISU/whgdata/whexpbar.gif deleted file mode 100755 index e677dc6f..00000000 Binary files a/doc/salome/gui/VISU/whgdata/whexpbar.gif and /dev/null differ diff --git a/doc/salome/gui/VISU/whgdata/whlstf0.htm b/doc/salome/gui/VISU/whgdata/whlstf0.htm deleted file mode 100755 index 1d484228..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf0.htm +++ /dev/null @@ -1,46 +0,0 @@ - - -Search Words List - - - - - - - -

- - -10n
2d 1 2 3 4 5 6 7
3d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
-

-able 1 2 3
above
abscissa
absolute
acceptable 1 2
access 1 2 3 4
accessed 1 2
accessible
accordance
according 1 2 3 4 5 6
accuracy
action
actions 1 2 3
activated 1 2 3
activates
active 1 2 3 4
activity
actor
actors
actually
addition 1 2
additional 1 2 3 4 5 6 7 8 9 10 11
adjust 1 2 3
adjusted
adjusting
advanced 1 2
again
algorithm
allow 1 2 3 4 5
allowing 1 2 3 4 5 6 7
allows 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
along 1 2 3 4 5
alpha
already 1 2
alternatively
always
analog
angle 1 2 3 4
animate
animating
animation 1 2 3 4
animations
another 1 2 3 4
any 1 2 3 4 5 6 7 8
apexes
api
appear 1 2 3 4 5 6
application 1 2
applied 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
applies
apply 1 2 3 4
area 1 2 3
around 1 2 3 4 5
arrange
array
arrows
asked
assign
assigned
associated 1 2
attributes 1 2 3
auto 1 2 3
automatically 1 2 3 4 5 6 7 8
available 1 2 3 4 5 6
average
avi
avoid
axes 1 2 3 4 5 6 7 8 9
axis 1 2 3 4 5 6 7 8 9
-

-back 1 2
background 1 2 3 4
backward 1 2
bar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
bars 1 2 3
base 1 2 3 4
based 1 2 3 4 5 6 7
basic 1 2 3
basing
basis 1 2 3 4 5 6 7 8
become
becomes
before
begin
beginning
being
belonging 1 2
belongs
below 1 2
better
bicolor 1 2
big
bigger
black 1 2
blue 1 2
bmp 1 2 3 4 5
both 1 2 3 4 5 6 7
bottom 1 2 3
bound
boundaries
boundary 1 2
box 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
boxes 1 2 3


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf1.htm b/doc/salome/gui/VISU/whgdata/whlstf1.htm deleted file mode 100755 index 26a1ba2e..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf1.htm +++ /dev/null @@ -1,43 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-browse 1 2
browser 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
build
builds
built 1 2
button 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
buttons 1 2 3 4
-

-calculation
calculations 1 2
called
calls
camera 1 2
cancel 1 2 3
cannot
case 1 2 3
cases
cause
cell
cells 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
center 1 2 3
centered
central 1 2
centred
certain
change 1 2 3 4 5 6 7 8
changed
changes 1 2 3 4
channel
characteristic
characteristics 1 2
check 1 2 3 4 5 6 7 8 9 10
checkbox
checked 1 2 3 4
checking
checkmark
choice 1 2 3
choices
choose 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
chosen 1 2 3 4 5 6
circle
clamp
click 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
clicking 1 2
clip
clipping 1 2 3
clips
clockwise
clone
close 1 2
closed
color 1 2 3 4 5 6 7 8 9 10 11
colored 1 2 3
coloring 1 2 3 4 5
colors 1 2
coloured
column 1 2
columns
combine
combined
combines
command 1 2
common 1 2
compare
comparison 1 2
compatible
complete
completely
complicated
component 1 2 3 4
components 1 2 3
compose
composed 1 2 3
composing
computation
computed 1 2
concept
conditions
cones
configuration 1 2
configure
confirm 1 2 3
considered
consist 1 2
consisting
consists 1 2
construct 1 2
constructed 1 2 3 4
construction 1 2
constructs
consuming
contain 1 2
contained
container 1 2
containing 1 2 3 4
contains 1 2 3
content
contents 1 2 3
context
continue 1 2
contour
contours
control 1 2 3
controller
controls 1 2
convey
coordinate 1 2 3
coordinates 1 2 3 4 5 6
copies
copy 1 2 3
corner
correspond 1 2 3
correspondence 1 2
corresponding 1 2 3 4
corresponds 1 2 3 4
corrupt
cost
counterclockwise
course


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf2.htm b/doc/salome/gui/VISU/whgdata/whlstf2.htm deleted file mode 100755 index 692e2e0e..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf2.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-create 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
created 1 2 3 4 5 6 7 8 9 10 11 12
creating 1 2 3 4 5 6 7 8 9 10
creation 1 2 3 4 5 6
cross 1 2 3
ctrl 1 2 3
current 1 2 3 4 5 6
cursor 1 2 3
curve 1 2 3 4 5
curves 1 2 3 4
customize
cut 1 2 3 4 5
cutting
cycled
-

-dash
data 1 2 3 4 5 6 7 8
decimal
decrease 1 2 3 4
default 1 2 3 4 5 6 7 8 9 10 11 12 13
definable
define 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
defined 1 2 3 4 5 6 7 8 9 10 11 12 13
defines 1 2 3 4 5 6 7 8
defining 1 2 3 4
definite 1 2 3 4 5
definition
definitions
deformation
deformed 1 2 3
degrees 1 2 3 4 5
delete 1 2
depend
depending 1 2 3
depends 1 2
depth
described
description 1 2
design
desktop
destined 1 2 3
developed
diagonal
dialog 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
diamond
different 1 2 3 4
differently
dimensions 1 2
direction 1 2 3 4
directly
directory
disable
disabled 1 2
displacement 1 2
display 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
displayed 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
displaying 1 2 3 4 5 6
displays 1 2 3 4 5
distance 1 2 3 4 5 6
divide 1 2
divided 1 2
divisions
does
doesn
dominant
don 1 2 3
dot
down 1 2 3
downward 1 2
drag 1 2
dragging
draw
drawn 1 2
dump 1 2 3 4 5
duplicate
duplicated
dynamic
dynamically 1 2
-

-e 1 2
edges 1 2
edit 1 2 3 4 5 6 7
editable
edition
effect
either
elapsed
element 1 2 3
elements 1 2 3 4
else
empty
end 1 2 3 4
ended
enter 1 2 3 4 5
entered 1 2
entities 1 2
entity


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf3.htm b/doc/salome/gui/VISU/whgdata/whlstf3.htm deleted file mode 100755 index 3378fe9e..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf3.htm +++ /dev/null @@ -1,49 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-equal 1 2 3
erase 1 2 3 4
erased
etc
every 1 2
everything
exactly 1 2
examine
exceed
exceeds
except 1 2
exist 1 2
existing 1 2
exit
exits
explore
export
exported
exporting
exports 1 2 3 4
expressed
extended
extent
extremities
-

-faces 1 2
factor 1 2 3 4 5 6
families 1 2
family 1 2
fast
feature 1 2
features
field 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
fields 1 2 3 4 5 6 7 8 9 10 11
file 1 2 3 4 5 6
files 1 2 3 4 5
finding
finish 1 2
finished 1 2 3 4 5 6 7 8 9
first 1 2 3
fit 1 2 3
fits
fixed 1 2
focal 1 2
folder 1 2
folders
following 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
follows 1 2 3
font 1 2 3
format 1 2 3 4
forming 1 2 3
forms
formula
forth
forward 1 2
founded
fps
frame 1 2 3 4
frames 1 2 3
framework
free
freedom
fully
function
functionalities
functionality 1 2 3 4 5 6 7
-

-g
gauss 1 2 3 4 5 6 7 8 9 10
general
generate 1 2
generated 1 2 3 4 5 6
generates
generating
generation 1 2
geom
geometrical 1 2 3 4
geometry
get 1 2 3
given 1 2 3 4 5
gives 1 2 3 4 5 6 7
gl
global 1 2 3
glyph
glyphs
graduate
graduated
graduation
graph 1 2
graphic
graphical
graphs 1 2
greater 1 2 3 4 5
grey
grid
group
grouped
groups 1 2
-

-h
half
halves 1 2
hardware
having 1 2 3 4
head 1 2
height 1 2 3
help
here 1 2 3 4 5
hidden
hide 1 2 3 4 5
hides 1 2 3
hiding 1 2
high
highest
highlight
highlighted 1 2
hold
horizontal 1 2 3 4
how 1 2
-

-i
icon 1 2 3 4 5 6 7 8 9 10 11
id 1 2


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf4.htm b/doc/salome/gui/VISU/whgdata/whlstf4.htm deleted file mode 100755 index d00844d2..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf4.htm +++ /dev/null @@ -1,49 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-if 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
ijk
image 1 2 3 4 5
images
immediately 1 2 3 4 5 6 7 8 9 10 11 12 13 14
import 1 2 3 4
imported 1 2 3 4
importing 1 2 3
imposed
impossible
inactive 1 2
included
including 1 2 3 4
increase 1 2 3 4
increment
independent
independently
index
indicated
indicating
individually
info 1 2
information 1 2 3 4 5 6 7
initial 1 2 3
input
inside 1 2
insideframe
inspected 1 2 3
integration
intended
interaction 1 2
interesting
interpolation
interval 1 2
intervals
introduces
introduction
invert
iso
isobaric
isometric
item 1 2
items
iterations
-

-jpeg 1 2 3 4
jpg 1 2 3 4 5
just
-

-key 1 2
keyboard 1 2 3 4
keys 1 2
-

-labels 1 2 3 4
larger
largest
last
latest
latitude
launch 1 2
launching
layout 1 2
learn
least
left 1 2 3 4 5 6 7
leftward
legend 1 2
length 1 2 3
less 1 2
level
like 1 2
limited
limits
line 1 2 3 4 5 6 7
linear 1 2 3
lined
lines 1 2 3 4 5 6 7 8 9 10
list 1 2 3 4 5
ll 1 2 3
loaded
loading
loads
local 1 2
located 1 2 3 4 5 6 7 8 9 10 11
location 1 2 3
locked
locking 1 2 3
logarithmic 1 2 3
longitude
look
lookout
lot
lower 1 2
lowest
lying 1 2
-

-m
magnification 1 2 3
magnitude 1 2 3
main 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
major
make 1 2
management
manipulate 1 2
manipulation
manipulations
manipulator
manual 1 2
manually 1 2 3
map 1 2
marked 1 2 3
marker 1 2
markers 1 2 3
marks 1 2
massless
matrix 1 2
max 1 2 3
maximal
maximum 1 2 3 4 5 6
mean 1 2
meaning
means
measured 1 2
menu 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
menus
merge
mesh 1 2 3 4 5 6 7 8 9 10 11 12 13
meshes 1 2
methods


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf5.htm b/doc/salome/gui/VISU/whgdata/whlstf5.htm deleted file mode 100755 index faf9e093..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf5.htm +++ /dev/null @@ -1,47 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-might
min 1 2 3
minimal
minimum 1 2 3 4 5
minor
mix
mode 1 2 3 4 5 6 7 8 9
model
models
modes 1 2
modify 1 2
module 1 2 3 4 5 6 7 8 9 10 11
modules
modulus
moment
momentarily
monitor
mouse 1 2 3 4 5 6 7 8
move 1 2 3
moved
movement 1 2
movements
moving
multiple
multiplied 1 2 3
multiply 1 2
-

-n 1 2 3
name 1 2 3 4 5 6 7
names 1 2
natural
navigation
nb 1 2
nbrfaces
necessary 1 2 3
need
negative 1 2
new 1 2 3 4 5 6 7 8 9
newly
next 1 2
nodes
none 1 2
normal
note 1 2 3
notify
now 1 2 3
nth
null
number 1 2 3 4 5 6 7 8 9 10 11 12 13
numbers
numerical
-

-object 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
objects 1 2 3 4 5 6 7
observe 1 2
obtained
offset
often
ok 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
once 1 2 3 4
oncells
one 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
onedges
onfaces
onnodes
opacity
opaque 1 2
open 1 2 3 4
opengl
opens
operation 1 2 3
operations 1 2 3 4
opposite
optimization
option 1 2 3 4 5 6 7 8 9 10 11
options 1 2 3 4 5
ordinary
ordinate
orientate
orientation 1 2 3 4 5 6 7
oriented
origin 1 2 3
otherwise
out 1 2 3
output
outside
overview
own 1 2
-

-pagedn
pageup
palette
panning 1 2 3
parameter 1 2 3 4
parameters 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
parent
parses
part 1 2 3
particle
particular 1 2 3
parts 1 2 3
path 1 2
pause
paused
per
perform
performed 1 2
period
periods
perpendicular
personal


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf6.htm b/doc/salome/gui/VISU/whgdata/whlstf6.htm deleted file mode 100755 index edfe649a..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf6.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-physical
picking 1 2
picture
pictures 1 2
pixels
place 1 2 3
placed
placement
plane 1 2 3 4 5
planes 1 2 3 4 5 6
plate
platform 1 2
play
plot 1 2 3 4 5 6 7
plot2d 1 2
plot2dview
plots 1 2 3 4 5
png 1 2 3 4 5
point 1 2 3 4 5 6 7 8 9
pointers
points 1 2 3 4 5 6 7 8 9 10 11 12 13 14
polyline
pop 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
position 1 2 3 4 5 6 7 8 9
positions 1 2
positive
possesses
possessing
possibility 1 2
possible 1 2 3 4 5
post 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
preferences 1 2 3 4 5 6 7
present
presentation 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
presentations 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
presents
press 1 2 3 4
pressed 1 2 3
presume
preview 1 2 3 4
previous
previously 1 2 3 4 5
primitive
primitives 1 2 3 4
pro 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
problem
procedure
process 1 2
processed 1 2
processing 1 2
produced
produces
progress 1 2
progression
progressive
prompts
propagation
properties 1 2 3 4 5 6 7 8 9 10 11 12
proportional
provides 1 2 3
pseudo 1 2
publish
published
pull
purpose
purposes
push
put
pyramid
pyramids
python
-

-quadrangles
quality
quit 1 2 3
-

-radio 1 2 3
radius
rainbow 1 2
range 1 2 3 4 5 6 7 8 9
ranged
ranges
ranging 1 2 3 4
rarefied
rate 1 2
ratio 1 2 3 4
real 1 2 3 4
record
recorded
recording 1 2
records
rectangle
rectangles
red
redefine
reference 1 2
references
refining
regarding
regimes
regular 1 2
related
relative 1 2 3 4
relevant 1 2
relief
remain
remote 1 2
remove
rename 1 2 3 4
render 1 2
rendering 1 2 3
represent 1 2
representation 1 2 3 4
representations
representative
represented 1 2 3 4 5
representing 1 2 3 4 5
represents 1 2 3 4
required 1 2 3 4
requires 1 2
reset 1 2
resizes 1 2
resolution
resources 1 2
respective 1 2
respectively 1 2
restore
restores
result 1 2 3
resulting 1 2 3
results 1 2 3 4 5
return 1 2 3
reuses
reveals
reverse


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf7.htm b/doc/salome/gui/VISU/whgdata/whlstf7.htm deleted file mode 100755 index ff4ee7f8..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf7.htm +++ /dev/null @@ -1,43 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-right 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
rightward
rotate 1 2 3 4
rotating
rotation 1 2 3 4 5 6 7
rotations 1 2 3
row 1 2
running 1 2
-

-s 1 2
salome 1 2 3 4 5 6 7 8
same 1 2 3 4 5 6 7 8 9
save 1 2 3 4 5 6 7
saves
saving
scalar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
scale 1 2 3 4 5 6 7 8 9
scales
scaling 1 2 3 4 5 6 7 8
scene 1 2 3 4 5
screen
script
search
second 1 2 3
secondary
section 1 2
see 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
seen
segmentation 1 2 3 4
segments 1 2
select 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
selectable
selected 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
selecting
selection 1 2 3 4
semi 1 2
sensitive
separate 1 2
separately 1 2
serve
session
sessions
set 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
setting 1 2 3 4 5 6 7 8 9 10 11 12
settings 1 2 3 4 5
setup
shader
shading
shape 1 2 3 4 5
shifting
should 1 2 3 4 5 6 7 8 9 10 11
show 1 2 3 4 5 6 7 8
shows 1 2 3 4 5 6 7
shrink
side 1 2
similar 1 2
simple
simultaneous
simultaneously 1 2 3 4
size 1 2 3 4 5 6 7
sizes
slow
small 1 2
smaller 1 2
smallest
smooth
smoother
smoothness 1 2
so 1 2 3 4
solid
solve
sometimes
source
space 1 2 3 4 5 6
spacemouse
spacing
special 1 2
specially
specified 1 2 3 4
specify 1 2 3
specifying
speed 1 2
spent
sphere 1 2
spheres
spline
splines
split
sprite 1 2
sprites


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf8.htm b/doc/salome/gui/VISU/whgdata/whlstf8.htm deleted file mode 100755 index 0dc0d1c7..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf8.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-stamp 1 2 3 4 5 6 7
stamps 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
standard 1 2 3 4 5 6 7 8
star
start 1 2 3 4 5
starting
state
step 1 2 3 4
steps 1 2 3 4
stop
store
stored
stream
streamline
streamlines
strictly
structure 1 2 3 4 5
structured
study 1 2 3 4 5 6
style 1 2
subfolder 1 2 3 4 5
subfolders
submenu
submesh 1 2 3 4 5
submeshes 1 2 3
substituted
suggests
superposition
supported
surface 1 2 3
surfaces 1 2
suspend
sweep 1 2 3
sweeping 1 2 3
switch 1 2 3
switching
system 1 2 3 4
systematically
-

-t 1 2 3 4
tab 1 2 3 4 5 6 7 8 9 10 11 12
table 1 2 3 4 5 6 7 8 9 10
tables 1 2 3 4 5 6 7 8
tail
take
taken 1 2 3 4
takes
technically
tensor 1 2
text 1 2
texture
textures
them 1 2 3 4 5 6 7 8 9 10
therefore
thick
thin
thought 1 2
three 1 2 3 4 5 6 7 8
threshold
tick
tilt
time 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
timing
title 1 2
titles
together
toggle
tolerance
toolbar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
toolbars
top 1 2 3
total
touch
touches
transformation 1 2
transforming
translate 1 2 3
translation 1 2 3
transparency 1 2
transparent 1 2 3
tree
triangle
triangles 1 2
triangular
triggers
trihedron
truncated
twice
two 1 2 3 4 5 6 7 8 9 10 11 12 13
txt 1 2
type 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
types 1 2 3 4 5 6
-

-unchecked
unique
units 1 2 3
unwanted
up 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
update
updated 1 2 3 4
upper
upward


>> - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstf9.htm b/doc/salome/gui/VISU/whgdata/whlstf9.htm deleted file mode 100755 index 09fb2ddc..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstf9.htm +++ /dev/null @@ -1,50 +0,0 @@ - - -Search Words List - - - - - - - -

<<

-

-usage
used 1 2 3 4 5 6 7 8 9 10 11 12 13
user 1 2 3 4 5 6 7 8
using 1 2 3 4 5 6 7 8 9 10 11 12
usually
-

-v 1 2
validate
value 1 2 3 4 5 6 7 8 9 10 11 12 13 14
values 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
variable
variables
various
vary
ve
vector 1 2 3 4 5 6 7 8 9 10 11 12
vectors 1 2 3
verbal
vertex
vertical 1 2 3 4
very 1 2
via 1 2 3
video
view 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
viewer 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
viewers
viewing 1 2
views 1 2
visible 1 2 3
visualisation
visualised
visualization 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
visualize 1 2 3
visualized 1 2
visualizes
vtk 1 2 3 4 5
-

-way 1 2 3
well 1 2
what
whatever
wheel
while
whole 1 2
why
width 1 2 3 4 5
will 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
window 1 2 3 4 5 6
windows 1 2
wireframe
wires
wish 1 2 3
within 1 2 3 4
without 1 2 3
would 1 2
written
-

-x 1 2 3 4 5 6 7 8
xls 1 2
xy 1 2 3 4 5 6 7
-

-y 1 2 3 4 5 6 7
your 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
yz 1 2 3
-

-z 1 2
zoom 1 2 3 4 5 6
zoomed
zx 1 2 3


- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl0.htm b/doc/salome/gui/VISU/whgdata/whlstfl0.htm deleted file mode 100755 index fa92b031..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl0.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ { {D ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl1.htm b/doc/salome/gui/VISU/whgdata/whlstfl1.htm deleted file mode 100755 index c67a440d..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl1.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ AB AC AD AG AL AN AP AR AS AT AU AV AX ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl10.htm b/doc/salome/gui/VISU/whgdata/whlstfl10.htm deleted file mode 100755 index f74abfa3..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl10.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ JP JU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl11.htm b/doc/salome/gui/VISU/whgdata/whlstfl11.htm deleted file mode 100755 index 4e25be0c..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl11.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ LA LE LI LL LO LY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl12.htm b/doc/salome/gui/VISU/whgdata/whlstfl12.htm deleted file mode 100755 index 58cf0df4..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl12.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ M MA ME MI MO MU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl13.htm b/doc/salome/gui/VISU/whgdata/whlstfl13.htm deleted file mode 100755 index 535ef53f..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl13.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ N NA NB NE NO NT NU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl14.htm b/doc/salome/gui/VISU/whgdata/whlstfl14.htm deleted file mode 100755 index afb03430..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl14.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ OB OF OK ON OP OR OT OU OV OW ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl15.htm b/doc/salome/gui/VISU/whgdata/whlstfl15.htm deleted file mode 100755 index a305ce69..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl15.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ PA PE PH PI PL PN PO PR PS PU PY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl16.htm b/doc/salome/gui/VISU/whgdata/whlstfl16.htm deleted file mode 100755 index b669c28b..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl16.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ RA RE RI RO RU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl17.htm b/doc/salome/gui/VISU/whgdata/whlstfl17.htm deleted file mode 100755 index 3debf65a..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl17.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ S SA SC SE SH SI SL SM SO SP ST SU SW SY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl18.htm b/doc/salome/gui/VISU/whgdata/whlstfl18.htm deleted file mode 100755 index 442ea3a9..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl18.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ T TA TE TH TI TO TR TW TX TY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl19.htm b/doc/salome/gui/VISU/whgdata/whlstfl19.htm deleted file mode 100755 index 58e56242..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl19.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ UN UP US ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl2.htm b/doc/salome/gui/VISU/whgdata/whlstfl2.htm deleted file mode 100755 index fc29bf06..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl2.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ BA BE BI BL BM BO BR BU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl20.htm b/doc/salome/gui/VISU/whgdata/whlstfl20.htm deleted file mode 100755 index 7bf2ba0a..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl20.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ V VA VE VI VT ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl21.htm b/doc/salome/gui/VISU/whgdata/whlstfl21.htm deleted file mode 100755 index e0db75af..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl21.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ WA WE WH WI WO WR ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl22.htm b/doc/salome/gui/VISU/whgdata/whlstfl22.htm deleted file mode 100755 index bf63ff86..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl22.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ X XL XY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl23.htm b/doc/salome/gui/VISU/whgdata/whlstfl23.htm deleted file mode 100755 index a1727a4e..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl23.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ Y YO YZ ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl24.htm b/doc/salome/gui/VISU/whgdata/whlstfl24.htm deleted file mode 100755 index a231fb7a..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl24.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ Z ZO ZX ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl3.htm b/doc/salome/gui/VISU/whgdata/whlstfl3.htm deleted file mode 100755 index 6d15fbe5..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl3.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ CA CE CH CI CL CO CR CT CU CY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl4.htm b/doc/salome/gui/VISU/whgdata/whlstfl4.htm deleted file mode 100755 index 8d50fb3b..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl4.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ DA DE DI DO DR DU DY ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl5.htm b/doc/salome/gui/VISU/whgdata/whlstfl5.htm deleted file mode 100755 index b1449c92..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl5.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ E ED EF EI EL EM EN EQ ER ET EV EX ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl6.htm b/doc/salome/gui/VISU/whgdata/whlstfl6.htm deleted file mode 100755 index 8bf4a47c..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl6.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ FA FE FI FO FP FR FU ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl7.htm b/doc/salome/gui/VISU/whgdata/whlstfl7.htm deleted file mode 100755 index 2c668045..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl7.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ G GA GE GI GL GR ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl8.htm b/doc/salome/gui/VISU/whgdata/whlstfl8.htm deleted file mode 100755 index fb648464..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl8.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ H HA HE HI HO ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstfl9.htm b/doc/salome/gui/VISU/whgdata/whlstfl9.htm deleted file mode 100755 index 6c5b1c8f..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstfl9.htm +++ /dev/null @@ -1,45 +0,0 @@ - - -Search Words letter - - - - - - - - - -

^ I IC ID IF IJ IM IN IS IT ^

- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstg0.htm b/doc/salome/gui/VISU/whgdata/whlstg0.htm deleted file mode 100755 index 193fb7c6..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstg0.htm +++ /dev/null @@ -1,75 +0,0 @@ - - -Glossary words list - - - - - - - -

Cell

-

Element of a mesh. Cells are determined by their connectivity. They can have 0,1,2 or 3 dimension.

-

Component

-

One integer or real value can correspond to each component of a field and to each entity of a mesh

-

Descendant connectivity

-

It is a description of the entities of the mesh with dimension N. This description is made by an ordered list of geometrical entities (nodes, edges, or faces) with dimension N-1.

-

Edge

-

An edge of a volumetric or surface mesh. It is composed of 2 or 3 nodes (2 vertex nodes and optionally one middle node).

-

Entity of a mesh

-

Geometrical component of the mesh: node, cell, face and edge. Faces and edges are only intermediate entities allowing to define the cells in descendant connectivity.

-

Equivalence

-

Equivalence represents a list of correspondance 2 by 2 of the entities of the same dimension.

-

Face

-

Face of a volumetrical cell (triangle, quadrangle).

-

Family

-

Entities of a mesh are described by a certain number  of characteristics (boundary conditions, groups membership). Families represent classes equivalent to these characteristics (two entities of a mesh can belong to the same family if they have the same characteristics). Every family is determined by a set of attributes and a list of groups membership.

-

Field

-

Field consists of one or several scalar components. One definite type is associated to the given field and the values corresponding to different components are all of the same type.

-

Field profile

-

Fields can be defined only on one part of the mesh. Profile  of the field or profile of the component of a field indicates which entities of the mesh contain values.

-

Group

-

Unordered set of entities of a mesh. One entity can belong to  several groups.

-

Mesh

-

Mesh is described by its geometry: list of nodes and list of cells which constitute this mesh. Supplementary information is added with the help of families (initial, boundary conditions).

-

Nodal connectivity

-

It is a description of an entity of the mesh by an ordered list of nodes constituting this entity.

-

Node

-

Node can be an isolated node of a mesh, a vertex or middle node of an edge. A node is associated to a point.

-

Point

-

Geometrical entity determined by its coordinates in the space.

-

Reference connectivity

-

For each type of entity of a mesh, reference connectivity define the topology of an entity.

-

Result

-

List of fields referring to one mesh.

-

Study

-

Study represents a chain of sequences of calculations.

-



- - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlsti0.htm b/doc/salome/gui/VISU/whgdata/whlsti0.htm deleted file mode 100755 index 32e2c7fd..00000000 --- a/doc/salome/gui/VISU/whgdata/whlsti0.htm +++ /dev/null @@ -1,39 +0,0 @@ - - - -Index words list - - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt0.htm b/doc/salome/gui/VISU/whgdata/whlstt0.htm deleted file mode 100755 index 512f86b3..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt0.htm +++ /dev/null @@ -1,51 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt1.htm b/doc/salome/gui/VISU/whgdata/whlstt1.htm deleted file mode 100755 index 28818033..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt1.htm +++ /dev/null @@ -1,58 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-    Table presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt2.htm b/doc/salome/gui/VISU/whgdata/whlstt2.htm deleted file mode 100755 index 85cd9299..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt2.htm +++ /dev/null @@ -1,61 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-       Presentation of a submesh
-       Field presentations
-       Viewing 3D presentations
-    Table presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt3.htm b/doc/salome/gui/VISU/whgdata/whlstt3.htm deleted file mode 100755 index 56224cc4..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt3.htm +++ /dev/null @@ -1,73 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-       Presentation of a submesh
-       Field presentations
-          Creating field presentations
-          Scalar Map presentation
-          Iso Surfaces presentation
-          Cut Lines presentation
-          Cut Planes presentation
-          Deformed Shape presentation
-          Vectors Presentation
-          Stream Lines presentation
-          Deformed Shape and Scalar Map presentation
-          Plot 3D presentation
-          Animating presentations
-          Gauss Points Presentations
-       Viewing 3D presentations
-    Table presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt4.htm b/doc/salome/gui/VISU/whgdata/whlstt4.htm deleted file mode 100755 index 49593c24..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt4.htm +++ /dev/null @@ -1,82 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-       Presentation of a submesh
-       Field presentations
-          Creating field presentations
-          Scalar Map presentation
-          Iso Surfaces presentation
-          Cut Lines presentation
-          Cut Planes presentation
-          Deformed Shape presentation
-          Vectors Presentation
-          Stream Lines presentation
-          Deformed Shape and Scalar Map presentation
-          Plot 3D presentation
-          Animating presentations
-          Gauss Points Presentations
-             Creating a Gauss Points Presentation
-             Primitive Types
-             Types of Gauss Points Presentations
-             Scalar Bar
-             Gauss Viewer
-             Navigation in the Gauss viewer
-             Picking
-             Segmentation
-             Recording in Gauss Viewer
-       Viewing 3D presentations
-    Table presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt5.htm b/doc/salome/gui/VISU/whgdata/whlstt5.htm deleted file mode 100755 index 1cbf89de..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt5.htm +++ /dev/null @@ -1,67 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-       Presentation of a submesh
-       Field presentations
-       Viewing 3D presentations
-          Viewing 3D Presentations
-          VTK 3D Viewer
-          Translate Presentation
-          Clipping
-          Sweeping
-          Selection Info
-    Table presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt6.htm b/doc/salome/gui/VISU/whgdata/whlstt6.htm deleted file mode 100755 index b98ace8f..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt6.htm +++ /dev/null @@ -1,62 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-    Table presentations
-       About tables
-       Importing/exporting tables
-       Displaying tables
-       Creating tables from Cut Lines presentations
-    XY plots
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whlstt7.htm b/doc/salome/gui/VISU/whgdata/whlstt7.htm deleted file mode 100755 index d048d938..00000000 --- a/doc/salome/gui/VISU/whgdata/whlstt7.htm +++ /dev/null @@ -1,63 +0,0 @@ - - - -Content - - - - - - - - - - -
-

- Post-Pro module
-    Introduction to Post-Pro
-    Running Post-Pro
-    Importing MED files
-    Structure of MED objects
-    3D presentations
-    Table presentations
-    XY plots
-       Creating curves
-       Creating XY plots
-       Plot2D Viewer
-       Setting properties of XY plots
-       Access to Post-Pro module functionality from Python (using VISU_Gen.idl)
-

- -
-

-

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvf30.htm b/doc/salome/gui/VISU/whgdata/whnvf30.htm deleted file mode 100755 index 7cff7ce5..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvf30.htm +++ /dev/null @@ -1,13 +0,0 @@ - - - -toc frame - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvf31.htm b/doc/salome/gui/VISU/whgdata/whnvf31.htm deleted file mode 100755 index 91a985f9..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvf31.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - -Index frame - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvf32.htm b/doc/salome/gui/VISU/whgdata/whnvf32.htm deleted file mode 100755 index bc2231fb..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvf32.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - -search frame - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvf33.htm b/doc/salome/gui/VISU/whgdata/whnvf33.htm deleted file mode 100755 index 6c091d82..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvf33.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - -Glossary frame - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvl31.htm b/doc/salome/gui/VISU/whgdata/whnvl31.htm deleted file mode 100755 index e29abc01..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvl31.htm +++ /dev/null @@ -1,43 +0,0 @@ - - - -Index Letters - - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvl32.htm b/doc/salome/gui/VISU/whgdata/whnvl32.htm deleted file mode 100755 index 3c83f31c..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvl32.htm +++ /dev/null @@ -1,72 +0,0 @@ - - - -Search Letters - - - - - - - - -

- # - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z -

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvl33.htm b/doc/salome/gui/VISU/whgdata/whnvl33.htm deleted file mode 100755 index d6f20c33..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvl33.htm +++ /dev/null @@ -1,72 +0,0 @@ - - - -Glossary Letters - - - - - - - - -

- # - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z -

- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvp30.htm b/doc/salome/gui/VISU/whgdata/whnvp30.htm deleted file mode 100755 index 0c9cb814..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvp30.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - Content Navigation Pane - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whgdata/whnvp31.htm b/doc/salome/gui/VISU/whgdata/whnvp31.htm deleted file mode 100755 index 87921c0b..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvp31.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - Index Navigation Pane - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whgdata/whnvp32.htm b/doc/salome/gui/VISU/whgdata/whnvp32.htm deleted file mode 100755 index 90697b01..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvp32.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - Search Navigation Pane - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whgdata/whnvp33.htm b/doc/salome/gui/VISU/whgdata/whnvp33.htm deleted file mode 100755 index 8351bcbe..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvp33.htm +++ /dev/null @@ -1,16 +0,0 @@ - - - - Glossary Navigation Pane - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whgdata/whnvt30.htm b/doc/salome/gui/VISU/whgdata/whnvt30.htm deleted file mode 100755 index ec1bb840..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvt30.htm +++ /dev/null @@ -1,47 +0,0 @@ - - - -Content Navigation Tab - - - - - - - - - - - -
- -
- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvt31.htm b/doc/salome/gui/VISU/whgdata/whnvt31.htm deleted file mode 100755 index e17d8254..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvt31.htm +++ /dev/null @@ -1,45 +0,0 @@ - - - -Index Navigation Tab - - - - - - - - - - - -
- -
- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvt32.htm b/doc/salome/gui/VISU/whgdata/whnvt32.htm deleted file mode 100755 index d6389253..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvt32.htm +++ /dev/null @@ -1,45 +0,0 @@ - - - -Search Navigation Tab - - - - - - - - - - - -
- -
- - - - diff --git a/doc/salome/gui/VISU/whgdata/whnvt33.htm b/doc/salome/gui/VISU/whgdata/whnvt33.htm deleted file mode 100755 index af63a025..00000000 --- a/doc/salome/gui/VISU/whgdata/whnvt33.htm +++ /dev/null @@ -1,45 +0,0 @@ - - - -Glossary Navigation Tab - - - - - - - - - - - -
- -
- - - - diff --git a/doc/salome/gui/VISU/whxdata/whftdata0.xml b/doc/salome/gui/VISU/whxdata/whftdata0.xml deleted file mode 100755 index 37c3d337..00000000 --- a/doc/salome/gui/VISU/whxdata/whftdata0.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whxdata/whfts.xml b/doc/salome/gui/VISU/whxdata/whfts.xml deleted file mode 100755 index fd4d35be..00000000 --- a/doc/salome/gui/VISU/whxdata/whfts.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/doc/salome/gui/VISU/whxdata/whfwdata0.xml b/doc/salome/gui/VISU/whxdata/whfwdata0.xml deleted file mode 100755 index 49225222..00000000 --- a/doc/salome/gui/VISU/whxdata/whfwdata0.xml +++ /dev/null @@ -1,888 +0,0 @@ - - - 5,0,1,11,32,34,35,38,6,26,39, - 32, - 39, - 4,5,0,7,2,10,11,15,14,19,31,32,34,33,35,6,27, - 31,32,39, - 0,32,6,26,39, - 33, - 31, - 35, - 4,5,7,2,10,15,14,19,31,33,35,36,27,39, - 7,39, - 36, - 7,11,17,34,33,25,39, - 4,5,7,10,19,24,27, - 39, - 3,0,1,11,12,14,30,16,20,31,32,34,35,23,24,38,6,39,40, - 5,7,10,24, - 5,1,34,33, - 39, - 35, - 31,35, - 5,0,35, - 18,33,40, - 38, - 36, - 11,39, - 27,39, - 30,33,6,25,39,40, - 14, - 12,13,23,26,39,28, - 3, - 26, - 0,31,24, - 32,34,36,39, - 5,0,30,32,38, - 0, - 16,6, - 38, - 5,0, - 23, - 0,32, - 5,12,13,14,21,34,22,37,23,26,28, - 5,1,32,25, - 31,33, - 5, - 5, - 11, - 4,5,0,1,7,11,12,13,14,30,18,21,31,32,34,33,36,37,23,24,38,6,25,26,27,39,28,40, - 16,33,24,38,6, - 35, - 5,26, - 6, - 0, - 39, - 1,11,12,34, - 5,17, - 5,0,6,27, - 5,12,26,27, - 3,4,0,7,30,16,18,31,35, - 1,29,23,24, - 32, - 0, - 5,7,10,14,23,25, - 3,8,2,11,12,13,16,21,34,35,37,23,26,27,39,28, - 18,22, - 33,26,40, - 11,12,32,34,38,40, - 6, - 11, - 28, - 0, - 7,30, - 36,39, - 7,16,6, - 1,7,6, - 1,7,11,14,30,18,38,27, - 0,30,16,31,6,40, - 39, - 5,0, - 6, - 1,11,12,34,33,24,6,25,40, - 7,11,12,31,34,33,38,6,40, - 5,10, - 30,33,6,25, - 31,26, - 5,11,12,13,29,21,32,34,36,37,23,38,6,26,39,28, - 3,5,10,11,17,20,23,26,27, - 3,4,7,11,21,33,23,26, - 35,23,27, - 32, - 18,32, - 22, - 5, - 11,35,23, - 32,38, - 0, - 36,39, - 35,28, - 5,0, - 32,36, - 18,36, - 30,33,35,6,40, - 8,30,34,36,25,26,39, - 33,36,38, - 26,40, - 38, - 3,32, - 5,0,7,10,11,12,13,14,16,18,19,34,33,23,24,38,26,39,28,40, - 3,5,0,7,8,9,2,10,11,12,13,15,14,29,30,18,19,21,34,35,37,23,24,6,25,26,27,28, - 18,23, - 18,37,23, - 5,0,1,10,14,29,30,19,21,31,32,34,33,23,24,38,6,26,39,28,40, - 33,38, - 3,35,23, - 32,35, - 29,35,24, - 35, - 5,30,32,23,39, - 6, - 3,4,8,2,11,12,13,16,21,34,37,23,26,27,39,28, - 16, - 33,28,40, - 32, - 32, - 30,31, - 6, - 5,0,14,29,30,31,33,24,38,6,25,39,40, - 35, - 16,36,38, - 5,0,7,11,12,13,18,34,33,36,23,6,26,28,40, - 34, - 7, - 1,14,29,18, - 0,1,7,8,9,10,11,12,13,15,14,29,30,16,18,19,21,34,36,37,23,26,28,40, - 3,0,10,16,24,26, - 7, - 35, - 5, - 5,0,1,7,8,9,2,10,11,12,13,15,14,29,30,16,18,19,21,32,34,33,22,37,23,24,38,6,25,26,27,28,40, - 0,1,38,6, - 31, - 33, - 18,35, - 7, - 7,11,12,13,32,34,33,35,36,23,26,39,28,40, - 18, - 4,7, - 3,21,31, - 5,0,31,38, - 30,6, - 37, - 5,27, - 3, - 18, - 1, - 26, - 4,5,20,32,35,22,36,23, - 3,5,2,10,27, - 5,0,35,39, - 26, - 28, - 3, - 3, - 38, - 30,39, - 14,18,24, - 36, - 10,11,33,23, - 3,7,11,21,33,23,26, - 11,26, - 26, - 3,7,8,10,11,18,19,23, - 0,33,38,40, - 6, - 0,35, - 34, - 30,31,36,26,39, - 26, - 7,16,31,32,23,38,6,40, - 0, - 14,30,6, - 32, - 3,7,13,32,34,35,36,39,28, - 3,23, - 0, - 26, - 31, - 35, - 3,4,5,1,7,8,9,2,10,11,12,13,29,30,17,19,21,34,22,37,23,38,6,26,27,39,28, - 10,11,14,22,23,27, - 1,7,6, - 14,30,31, - 7,30,31,32,35,36,25, - 32,35,38, - 7,10,11,33,25, - 32, - 4,2,11,12,34, - 5, - 7, - 3,4,7,11,17,18,20,23, - 34, - 5,30,31,34, - 7,11,12,13,18,31,33,35,22,36,23,39,40, - 3,0,1,7,11,12,13,21,31,32,34,33,35,36,37,23,38,25,26,27,39,28,40, - 38, - 3,5,10,12,16, - 34,35, - 13,37,39, - 5, - 1,11,12,31,34, - 1,14, - 5,31,35,38,39, - 38, - 4,30,6, - 31,33, - 36, - 22, - 5,20,33, - 30,6, - 30, - 7, - 5,0,7,10,11,14,29,16,18,19,35,36,23,24,38,39, - 7, - 3,5,30,36,38,39, - 36,23, - 38, - 30,31,38,26, - 5, - 0,34,36,39, - 11,12, - 4,5,0,1,7,8,9,2,10,11,12,13,15,14,30,16,18,21,32,34,33,35,36,37,23,38,6,25,26,27,28,40, - 1,32,35,24,6,40, - 3,31,39, - 33, - 31, - 30,6, - 33, - 31, - 33,35,40, - 7, - 5,14,31, - 5,0, - 7,40, - 33,38,40, - 33, - 33,40, - 30,33,6,25,40, - 14,33, - 31, - 32,39, - 35,36, - 3,6, - 10,11,12,14,30,38,6, - 39, - 39, - 39, - 1, - 18, - 3,16,32,38,6, - 36, - 4,7, - 5,32,35,38,27, - 14,16,19,21,23, - 11,12, - 3,18, - 26, - 21,35,23, - 14,30,38,6,25, - 30, - 7, - 3,5, - 18, - 0,18, - 16, - 33, - 35, - 39,40, - 14,34,6,39, - 29,38, - 26, - 5,0,30,19,33,6,40, - 16, - 40, - 16, - 1, - 3,35, - 13,34,35,37,39,28, - 3,26, - 3,18, - 33, - 36,24,26, - 3,5,8,11,12,13,14,29,16,17,18,20,21,34,37,23,24,6,26,27,28, - 3,4,5,0,17,18,19,35,23,25, - 18, - 0,11,12,13,18,21,34,37,23,26,28, - 5,32,38, - 33,25,40, - 32,39, - 31,32, - 3,19, - 3, - 3,5,0,1,7,8,10,14,30,16,19,31,32,33,22,23,6,25, - 36,23,40, - 2,16,20,33, - 30,33,6,40, - 35, - 39, - 31,26, - 36, - 0, - 5,0,33,27,40, - 21, - 30, - 31, - 18, - 38, - 30,40, - 4,0,7,34,33,38,40, - 35, - 0,29,30,31,32,35,36,38,39,40, - 3, - 5,11,21,32,26,27, - 5,26, - 38, - 3,18,35,39, - 39, - 5,16,32, - 0,1,30,33,6,25,39, - 0,7,12,35,36, - 35, - 33,36,40, - 28, - 40, - 23, - 33,25, - 25, - 28, - 0,32,33,35,40, - 36, - 33, - 3,18,23,26, - 30,6, - 7, - 39, - 1,34, - 26, - 10,11,19,26, - 31,28, - 32,36,23, - 4, - 5,11,33,23,39, - 1,14,30,32,6,25,40, - 14, - 35, - 18, - 16,32, - 14, - 7, - 1,33,36,23, - 17,18, - 5,0, - 16,36, - 11,12,13,29,21,34,22,37,23,26,28, - 16,32, - 5,0,1,7,11,14,16,18,32,34,33,35,36,23,26,28,40, - 1, - 0,30,33,6,40, - 1,11,12,13,14,16,18,21,34,37,23,26,39,28, - 4,7,9,17,18,19, - 23, - 6, - 36,23, - 3,0,20,26,39, - 5,30,31,34, - 31, - 3,31, - 1,16, - 3,5,0,7,23, - 32, - 16,6, - 3,16,32,33,35,6,39, - 3,22,27, - 0, - 11,38, - 6, - 32,36,38, - 5,0, - 5,0, - 11, - 26, - 5, - 30,31, - 26, - 3, - 0,11,33,35, - 31, - 20, - 11, - 21, - 21, - 40, - 10,18,19, - 32, - 16, - 30,33,6,40, - 5,0, - 30,33,35,6,40, - 0, - 16, - 31,32,39, - 30,31,32,39, - 5, - 36,23,25,40, - 23, - 39, - 5, - 0, - 35, - 17,22, - 30,16, - 38, - 7, - 10,30,31,32,33,36,23,40, - 7, - 33,25, - 11,26,39,40, - 0,23, - 35, - 3,22, - 35,36, - 4,7,2,10,11,32,33,36,6,26,28, - 33,36,25, - 3,5,1,10,23,26, - 0,33,40, - 18, - 31,36, - 8,11,12,19,32,34,36,38,6,26,39,40, - 5,0,35,38, - 30,31,40, - 33,23,25, - 35, - 22, - 36, - 26, - 0,38, - 18, - 34,6, - 39, - 31,35,39, - 13,26,28, - 3,5,8,10,11,12,13,14,29,16,19,21,34,33,35,37,23,38,26,28, - 33, - 8,26, - 5, - 30,31, - 30,31, - 31, - 4,11,12,38,6,40, - 37,23, - 7,11,33,40, - 32,33,36, - 26, - 35,36, - 18,36,39, - 23, - 21,33,35,36,26,39, - 5,32,39, - 35,26, - 5, - 5,1,7,8,9,2,10,11,12,13,15,14,29,30,16,18,19,21,34,33,35,22,37,23,38,6,25,26,27,39,28, - 6, - 3,11,12,13,16,17,32,34,37,23,38,26,39,28, - 4, - 6, - 18,36,39, - 23, - 21,36,38,27,39, - 33, - 5,0, - 37, - 5,0, - 5,0, - 0,1,30,31,32,33,36,23,6,28, - 31, - 14,39, - 3,5,30,17,20,33,35,22,23,38,6,40, - 36, - 3, - 32, - 18, - 14,30,31,32,33,38,6,40, - 5,10,31,24,38, - 31,32, - 31,39, - 26, - 32,35,39, - 33,36,39, - 0,10,14,16,19,32,33,40, - 33, - 31, - 36,23, - 35, - 5,0,1, - 5,16,18,19, - 36,39, - 5,0, - 1,8,2,10,17,19,33,22,38,6, - 5,32, - 3, - 7,26, - 1, - 0,18,23, - 35, - 1,29,32, - 36, - 39, - 5,12,16,21,32,34,33,35,36,23,26,27,39,40, - 32, - 33, - 3,5,1,7,8,9,2,10,11,12,13,15,14,29,30,16,18,19,21,31,34,33,37,23,24,6,25,26,27,28,40, - 11,12, - 35, - 40, - 3, - 5,0,7,10,11,12,13,14,29,19,21,34,37,23,24,26,28, - 3,5,1,7,8,10,11,12,13,14,29,19,21,34,35,37,23,26,27,28, - 7,18,32,38, - 3, - 3, - 3, - 3, - 6, - 32,6, - 18,19,33,35, - 35, - 5,11,14,30,18,31,33,35, - 1, - 5, - 26, - 5,7,13,15,14,30,18,31,33,36,6,25,26,27,28, - 37, - 36, - 1, - 40, - 1,11,12,34,36,23,38, - 36,23,38,40, - 18, - 33,23,40, - 26, - 38, - 17, - 3,23, - 5,0, - 31, - 31, - 36, - 31,33,40, - 5, - 11,12,35,26, - 5,1,7,11,12,13,14,30,17,21,34,35,36,37,23,38,6,26,28,40, - 32, - 18, - 3,5,0,1,7,33,38,40, - 26, - 3,10,26, - 5,0, - 5,0,26, - 0, - 0, - 3,0,18,40, - 5, - 3,5, - 1, - 14, - 3, - 30,32, - 5,35, - 35, - 11,33,6,40, - 36, - 1,11,12,30,34,38,6, - 34, - 20,22, - 0, - 7,10,11,17,20,34,33,25, - 7,10, - 7, - 30,33,35,6,40, - 3,7,29,30,16,31,32,33,35,36,38,6,26,39,40, - 28, - 26, - 5,7,8,9,2,10,11,12,13,15,14,29,21,34,37,23,6,26,27,28, - 1,11,12,30,32,34,33,39,28,40, - 36, - 16,31, - 0,25, - 5,1,7,8,31,38,39, - 3,4,5,0,7,8,2,10,11,30,17,18,19,20,33,22,23,6,26,27,40, - 18,31,32,35,22,23,6, - 5,0,29,30,32,33,40, - 5,23, - 3,4,5,0,1,8,9,2,11,12,13,14,29,30,16,17,20,21,32,34,35,22,36,37,23,24,38,6,26,27,39,28,40, - 36, - 1,11,12,34, - 5, - 4,10,21,31,25, - 29,35,38,39, - 3,4,5,0,7,8,2,10,11,30,17,18,19,20,33,22,23,6,26,27,40, - 6, - 11, - 18,20,27,39, - 0,20, - 5,0, - 18,35, - 36, - 0, - 35, - 26, - 5,0, - 5,0,13,29,30,33,36,23,6,25,28,40, - 5, - 20,31,6, - 6,27, - 5, - 31, - 35,26, - 31, - 3, - 32, - 4, - 3, - 0, - 10,29,24, - 34,6,39, - 38, - 36,39, - 4,5,13,21,32,34,35,36,23,6,25,39,28, - 4, - 0,18, - 30,31,32,39, - 5,11,33,38,39, - 0,30, - 7,18, - 36, - 40, - 4,10,39, - 36, - 27, - 0, - 11,36, - 22, - 12,34,35,6, - 35,23, - 34, - 35, - 33,40, - 7, - 14,30,6,25, - 5,36, - 35,36,39, - 3,4,7,34,33,23,6,25,26,28,40, - 3,14,33,6,25, - 39, - 5,0,7,8,15,16,26, - 24,40, - 33,40, - 35, - 0,26, - 18,39, - 31,39, - 6,40, - 3,11,32,34,35,36,38,39, - 5,30,6, - 11, - 33, - 1, - 5,7,8,9,2,10,11,12,13,15,14,29,30,18,19,21,31,34,33,36,37,23,24,6,25,26,27,28, - 7, - 1,30,31,38,40, - 1,11,12,30,31,34,40, - 4,7, - 5,0,22, - 3,32,23, - 7,30,20,31,35,22,23,24, - 5,7,11,14,30,31,23,38,6,39, - 5,0,30,33,36,23,25, - 13,34,33,36,37,23,24,6,25,39,28, - 3,5,8,2,11,12,13,29,16,21,32,34,35,36,37,23,38,6,26,39,28, - 33,35,36,39,40, - 31, - 4, - 3,4,5,0,8,11,13,18,21,34,33,35,22,37,38,6,26,28,40, - 18, - 0,36,38, - 38, - 1,6, - 36, - 3,26, - 0,30,35,38, - 5,1,7,8,2,10,11,12,13,14,29,30,16,18,19,21,32,34,33,36,37,23,24,6,25,26,27,39,28,40, - 5,1, - 30,16,32,6, - 32,38, - 6, - 15,6, - 33,6, - 26, - 0,23, - 5,0,1,11,12,13,14,29,17,18,21,32,34,35,22,37,23,6,25,26,39,28,40, - 0,30,18,33,25, - 5, - 35,6, - 12,13,35,37,39, - 13, - 3,5,0,1,7,11,12,16,18,34,22,6,27, - 5,1,11,12,15,18,32,33,36,38,25,39,40, - 6, - 12,36, - 38,26, - 35, - 5,11,12,36,6, - 0,16,32,33,35,26,39, - 32, - 35,26, - 28,40, - 39, - 34,26, - 32,26, - 5,32,35,39, - 7, - 6, - 26, - 26, - 5,0, - 11,12,16,34,36,39, - 31, - 5,31, - 4,30,32, - 5,0,33,24, - 33,6,26, - 18, - 35,38, - 33, - 1, - 32,35, - 3,5,0,8,11,12,13,14,29,30,18,21,34,36,37,23,6,26,28, - 0,7,30,18,19,31,35,39, - 31, - 5,0,1,22,26,27, - 27, - 5,11,18,32,34,26,27, - 0, - 3,30, - 26, - 26, - 40, - 3,1,7,11,16,18,26, - 5,7,10,11,17,22, - 30,31, - 3,8,14,30,6, - 3, - 8, - 3,8,9,16,17,20,24, - 0, - 5, - 35, - 6, - 31, - 12,21,34,6, - 0, - 5,17,18,6,27, - 30,31,6, - 5,0, - 0,31,35,39, - 36, - 18,33,35,40, - 4,11,12,13,19,21,34,37,23,38,26,28, - 3,4,7,2,11,15,16,17,19,20,33,25, - 28, - 26,27, - 7,11,13,36, - 35, - 35,36, - 36,23, - 35, - 4,5,1,7,21,31,32,35,23,6,40, - 35, - 6, - 6, - 5,0, - 35,26, - 3,4,11,12,34,35,23,39, - 35, - 40, - 31, - 3,5,0,8,11,12,13,14,29,30,18,21,34,36,37,23,38,6,26,27,28, - 7, - 4,33,23, - 3, - 31, - 32, - 5,0,7, - 8,11,12,13,14,29,30,21,31,32,34,33,22,37,23,38,26,28,40, - 32,33,38, - 35, - 32, - 26, - 23,27, - 30,24,6, - 30,31,38, - 32,35, - 32,38,6, - 3, - 3,7,40, - 32, - 25, - 40, - 1, - 39, - 0,1,7,10,11,12,30,32,34,35,36,37,38, - 4,19, - 3,5,7,8,11,12,13,29,16,34,33,35,37,23,6,25,26,27,39,28, - 18,40, - 39, - 4,7,26, - 1, - 5,7,8,9,2,10,11,12,13,15,14,29,21,31,34,35,36,37,23,38,6,26,27,28, - 21,32,22,38,39, - 7, - 3,5,0,1,7,10,11,13,29,30,16,31,32,35,36,23,38,26,27,39,28,40, - 17, - 26, - 5,0, - 7,38, - 5, - 3,4,0,7,8,2,11,12,13,16,18,21,32,34,35,36,37,23,6,26,27,39,28, - 5,0,36,38, - 20, - 39, - 0, - 3,8,13,16,21,34,35,36,37,23,26,28, - 33, - 35, - 1,7,33,36,23, - 32,26, - 30,25,40, - 0, - 3,4,0,1,7,9,2,10,11,12,13,15,14,30,16,17,21,31,32,34,33,35,22,37,23,24,38,6,25,26,27,39,28,40, - 31, - 33,35,40, - 35, - 29, - 11,13,32,35,28, - 8,11,12,13,29,20,21,34,37,23,38,6,26,28,40, - 30,35,22,6,40, - 1,32,38, - 8,23, - 18, - 35, - 5, - 5,0, - 5,34, - 3,35,23, - 3, - 7,36,23,6,28, - 3,5,0,1,7,8,9,2,10,11,12,13,15,14,16,18,19,21,32,34,33,35,22,36,37,23,24,6,25,26,27,39,28, - 0,10,15,30,32,22,38, - 6, - 6, - 33,6,40, - 32,35,36,6, - 4,30,31, - 5,0, - 0,35, - 36, - 1,7,31,33,35,36,23,24, - 4,19, - 10,11,12,20,34,33,25, - 1,7,31,33,36,23,24, - 5,0,1,7,2,10,11,12,13,15,14,29,18,19,21,34,33,37,23,24,25,26,28, - 11,12,34, - 1,24, - 30,31,32,33,35,40, - 11,12,34, - - diff --git a/doc/salome/gui/VISU/whxdata/whgdata0.xml b/doc/salome/gui/VISU/whxdata/whgdata0.xml deleted file mode 100755 index b0993a04..00000000 --- a/doc/salome/gui/VISU/whxdata/whgdata0.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whxdata/whglo.xml b/doc/salome/gui/VISU/whxdata/whglo.xml deleted file mode 100755 index ac67056d..00000000 --- a/doc/salome/gui/VISU/whxdata/whglo.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/doc/salome/gui/VISU/whxdata/whidx.xml b/doc/salome/gui/VISU/whxdata/whidx.xml deleted file mode 100755 index 44f05e5b..00000000 --- a/doc/salome/gui/VISU/whxdata/whidx.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/doc/salome/gui/VISU/whxdata/whtdata0.xml b/doc/salome/gui/VISU/whxdata/whtdata0.xml deleted file mode 100755 index 13b3a715..00000000 --- a/doc/salome/gui/VISU/whxdata/whtdata0.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/salome/gui/VISU/whxdata/whtoc.xml b/doc/salome/gui/VISU/whxdata/whtoc.xml deleted file mode 100755 index 871ec25b..00000000 --- a/doc/salome/gui/VISU/whxdata/whtoc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/doc/salome/tui/Makefile.am b/doc/salome/tui/Makefile.am index 0f139546..2c7beb8e 100644 --- a/doc/salome/tui/Makefile.am +++ b/doc/salome/tui/Makefile.am @@ -22,36 +22,20 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -EXTRA_DIST+=VISU +EXTRA_DIST += images static -dev_docs: - cp -fr $(srcdir)/VISU ./INPUT; \ - cp -f ./VISU/doxyfile ./INPUT; \ - cd INPUT; \ - sed 's|../../../share/salome|$(top_srcdir)|' ./doxyfile > ./doxyfile1; \ - sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ - echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \ - if( test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \ - sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ - $(DOXYGEN) -u ./doxyfile1; \ - else \ - sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ - fi; \ - if( test "x@DOXYGEN_WITH_STL@" = "xyes"); then \ - sed -e 's|BUILTIN_STL_SUPPORT = NO|BUILTIN_STL_SUPPORT = YES|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ - fi; \ - mv -f doxyfile1 doxyfile; \ - echo "Running doxygen in directory:"`pwd`; \ - $(DOXYGEN) ./doxyfile; \ - cd ../; \ - cp -fr $(srcdir)/VISU/sources/ VISU ; \ - rm -fr INPUT +dev_docs: doxyfile + echo "Running doxygen in directory: "`pwd`; \ + $(DOXYGEN) $<; -doctuidir=$(docdir)/tui/VISU +clean-local: + -rm -fr VISU doxygen.bak -nodist_doctui_DATA= VISU/doxyfile -EXTRA_DIST+= VISU/doxyfile.in +install-data-local: + if test -d VISU; then \ + $(INSTALL) -d $(DESTDIR)$(docdir)/tui ; \ + cp -rp VISU $(DESTDIR)$(docdir)/tui ; \ + fi; + +uninstall-local: + rm -rf $(DESTDIR)$(docdir)/tui/VISU diff --git a/doc/salome/tui/VISU/HTML/VISU_Gen.html b/doc/salome/tui/VISU/HTML/VISU_Gen.html deleted file mode 100644 index 5d4af0b6..00000000 --- a/doc/salome/tui/VISU/HTML/VISU_Gen.html +++ /dev/null @@ -1,1070 +0,0 @@ - - - - - - - - - - - - - - - - -
interface Base
IDL file
Python
IdType GetID ( )
return_value = GetID ( )
VISUType GetType ( )
return_value = GetType ( )

- - - - - - - -
interface PrsObject
IDL file
Python

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface Table
IDL file
Python
void SetTitle ( in string theTitle )
SetTitle ( theTitle )
string GetTitle ( )
return_value = GetTitle ( )
void SetOrientation ( in Orientation theOrientation )
SetOrientation ( theOrientation )
Orientation GetOrientation ( )
return_value = GetOrientation ( )
long GetNbRows ( )
return_value = GetNbRows ( )
long GetNbColumns ( )
return_value = GetNbColumns ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface Curve
IDL file
Python
void SetTitle ( in string theTitle )
SetTitle ( theTitle )
string GetTitle ( )
return_value = GetTitle ( )
void SetColor ( in Color theColor )
SetColor ( theColor )
Color GetColor ( )
return_value = GetColor ( )
void SetMarker ( in MarkerType theType )
SetMarker ( theType )
MarkerType GetMarker ( )
return_value = GetMarker ( )
void SetLine ( in LineType theType, in long theLineWidth )
SetLine ( theType, theLineWidth )
LineType GetLine ( )
return_value = GetLine ( )
long GetLineWidth ( )
return_value = GetLineWidth ( )

- - - - - - - - - - - - - - - - - - - - - - - -
interface Container
IDL file
Python
void AddCurve ( in Curve theCurve )
AddCurve ( theCurve )
void RemoveCurve ( in Curve theCurve )
RemoveCurve ( theCurve )
long GetNbCurves ( )
return_value = GetNbCurves ( )
void Clear ( )
Clear ( )

- - - - - - - -
interface Prs3d
IDL file
Python

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface Mesh
IDL file
Python
void SetCellColor ( in Color theColor )
SetCellColor ( theColor )
Color GetCellColor ( )
return_value = GetCellColor ( )
void SetNodeColor ( in Color theColor )
SetNodeColor ( theColor )
Color GetNodeColor ( )
return_value = GetNodeColor ( )
void SetLinkColor ( in Color theColor )
SetLinkColor ( theColor )
Color GetLinkColor ( )
return_value = GetLinkColor ( )
void SetPresentationType ( in PresentationType theType )
SetPresentationType ( theType )
PresentationType GetPresentationType ( )
return_value = GetPresentationType ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface ScalarMap
IDL file
Python
void SetScalarMode ( in long theScalarMode )
SetScalarMode ( theScalarMode )
long GetScalarMode ( )
return_value = GetScalarMode ( )
void SetScaling ( in Scaling theScaling )
SetScaling ( theScaling )
Scaling GetScaling ( )
return_value = GetScaling ( )
void SetRange ( in double theMin, in double theMax )
SetRange ( theMin, theMax )
double GetMin ( )
return_value = GetMin ( )
double GetMax ( )
return_value = GetMax ( )
void SetBarOrientation ( in Orientation theOrientation )
SetBarOrientation ( theOrientation )
Orientation GetBarOrientation ( )
return_value = GetBarOrientation ( )
void SetPosition ( in double X, in double Y )
SetPosition ( X, Y )
double GetPosX ( )
return_value = GetPosX ( )
double GetPosY ( )
return_value = GetPosY ( )
void SetSize ( in double theWidth, in double theHeight )
SetSize ( theWidth, theHeight )
double GetWidth ( )
return_value = GetWidth ( )
double GetHeight ( )
return_value = GetHeight ( )
void SetNbColors ( in long theNbColors )
SetNbColors ( theNbColors )
long GetNbColors ( )
return_value = GetNbColors ( )
void SetLabels ( in long theNbLabels )
SetLabels ( theNbLabels )
long GetLabels ( )
return_value = GetLabels ( )
void SetTitle ( in string theName )
SetTitle ( theName )
string GetTitle ( )
return_value = GetTitle ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface DeformedShape
IDL file
Python
void SetScale ( in double theScale )
SetScale ( theScale )
double GetScale ( )
return_value = GetScale ( )
boolean IsColored ( )
return_value = IsColored ( )
void ShowColored ( in boolean theColored )
ShowColored ( theColored )
Color GetColor ( )
return_value = GetColor ( )
void SetColor ( in Color theColor )
SetColor ( theColor )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface CutPlanes
IDL file
Python
void SetOrientation ( in Orientation theOrientation, in double theXAngle, in double theYAngle )
SetOrientation ( theOrientation, theXAngle, theYAngle )
Orientation GetOrientationType ( )
return_value = GetOrientationType ( )
double GetRotateX ( )
return_value = GetRotateX ( )
double GetRotateY ( )
return_value = GetRotateY ( )
void SetDisplacement ( in double theDisp )
SetDisplacement ( theDisp )
double GetDisplacement ( )
return_value = GetDisplacement ( )
void SetPlanePosition ( in long thePlaneNumber, in double thePlanePosition )
SetPlanePosition ( thePlaneNumber, thePlanePosition )
void SetDefault ( in long thePlaneNumber )
SetDefault ( thePlaneNumber )
double GetPlanePosition ( in long thePlaneNumber )
return_value = GetPlanePosition ( thePlaneNumber )
boolean IsDefault ( in long thePlaneNumber )
return_value = IsDefault ( thePlaneNumber )
void SetNbPlanes ( in long theNb )
SetNbPlanes ( theNb )
long GetNbPlanes ( )
return_value = GetNbPlanes ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface CutLines
IDL file
Python
void SetOrientation ( in Orientation theOrientation, in double theXAngle, in double theYAngle )
SetOrientation ( theOrientation, theXAngle, theYAngle )
void SetOrientation2 ( in Orientation theOrientation, in double theXAngle, in double theYAngle )
SetOrientation2 ( theOrientation, theXAngle, theYAngle )
Orientation GetOrientationType ( )
return_value = GetOrientationType ( )
Orientation GetOrientationType2 ( )
return_value = GetOrientationType2 ( )
double GetRotateX ( )
return_value = GetRotateX ( )
double GetRotateX2 ( )
return_value = GetRotateX2 ( )
double GetRotateY ( )
return_value = GetRotateY ( )
double GetRotateY2 ( )
return_value = GetRotateY2 ( )
void SetDisplacement ( in double theDisp )
SetDisplacement ( theDisp )
void SetDisplacement2 ( in double theDisp )
SetDisplacement2 ( theDisp )
double GetDisplacement ( )
return_value = GetDisplacement ( )
double GetDisplacement2 ( )
return_value = GetDisplacement2 ( )
void SetBasePlanePosition ( in double thePlanePosition )
SetBasePlanePosition ( thePlanePosition )
double GetBasePlanePosition ( )
return_value = GetBasePlanePosition ( )
void SetLinePosition ( in long thePlaneNumber, in double thePlanePosition )
SetLinePosition ( thePlaneNumber, thePlanePosition )
double GetLinePosition ( in long thePlaneNumber )
return_value = GetLinePosition ( thePlaneNumber )
void SetDefault ( )
SetDefault ( )
boolean IsDefault ( )
return_value = IsDefault ( )
void SetDefaultPosition ( in long thePlaneNumber )
SetDefaultPosition ( thePlaneNumber )
boolean IsDefaultPosition ( in long thePlaneNumber )
return_value = IsDefaultPosition ( thePlaneNumber )
void SetNbLines ( in long theNb )
SetNbLines ( theNb )
long GetNbLines ( )
return_value = GetNbLines ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface StreamLines
IDL file
Python
boolean SetParams ( in double theIntStep, in double thePropogationTime, in double theStepLength, in Prs3d thePrs3d, in double thePercents, in Direction theDirection )
return_value = SetParams ( theIntStep, thePropogationTime, theStepLength, thePrs3d, thePercents, theDirection )
double GetIntegrationStep ( )
return_value = GetIntegrationStep ( )
double GetPropagationTime ( )
return_value = GetPropagationTime ( )
double GetStepLength ( )
return_value = GetStepLength ( )
Prs3d GetSource ( )
return_value = GetSource ( )
double GetUsedPoints ( )
return_value = GetUsedPoints ( )
Direction GetDirection ( )
return_value = GetDirection ( )

- - - - - - - - - - - - - - - -
interface IsoSurfaces
IDL file
Python
void SetNbSurfaces ( in long theNb )
SetNbSurfaces ( theNb )
long GetNbSurfaces ( )
return_value = GetNbSurfaces ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface Vectors
IDL file
Python
void SetLineWidth ( in double theWidth )
SetLineWidth ( theWidth )
double GetLineWidth ( )
return_value = GetLineWidth ( )
void SetGlyphType ( in GlyphType theType )
SetGlyphType ( theType )
GlyphType GetGlyphType ( )
return_value = GetGlyphType ( )
void SetGlyphPos ( in GlyphPos thePos )
SetGlyphPos ( thePos )
GlyphPos GetGlyphPos ( )
return_value = GetGlyphPos ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface Animation
IDL file
Python
void addField ( in SObject theObject )
addField ( theObject )
void generatePresentations ( in long theFieldNum )
generatePresentations ( theFieldNum )
boolean generateFrames ( )
return_value = generateFrames ( )
void clearView ( )
clearView ( )
void startAnimation ( )
startAnimation ( )
void stopAnimation ( )
stopAnimation ( )
void nextFrame ( )
nextFrame ( )
void prevFrame ( )
prevFrame ( )
void firstFrame ( )
firstFrame ( )
void lastFrame ( )
lastFrame ( )
void gotoFrame ( in long theFrame )
gotoFrame ( theFrame )
long getNbFields ( )
return_value = getNbFields ( )
long getNbFrames ( )
return_value = getNbFrames ( )
boolean isRunning ( )
return_value = isRunning ( )
long getCurrentFrame ( )
return_value = getCurrentFrame ( )
ScalarMap getPresentation ( in long theField, in long theFrame )
return_value = getPresentation ( theField, theFrame )
void setPresentationType ( in long theFieldNum, in VISUType theType )
setPresentationType ( theFieldNum, theType )
VISUType getPresentationType ( in long theFieldNum )
return_value = getPresentationType ( theFieldNum )
void setSpeed ( in long theSpeed )
setSpeed ( theSpeed )
long getSpeed ( )
return_value = getSpeed ( )
boolean isProportional ( )
return_value = isProportional ( )
void setAnimationRange ( in double theMin, in double theMax )
setAnimationRange ( theMin, theMax )
double getMinRange ( )
return_value = getMinRange ( )
double getMaxRange ( )
return_value = getMaxRange ( )
boolean isRangeDefined ( )
return_value = isRangeDefined ( )
void dumpTo ( in string thePath )
dumpTo ( thePath )
boolean isCycling ( )
return_value = isCycling ( )
double getMinTime ( )
return_value = getMinTime ( )
double getMaxTime ( )
return_value = getMaxTime ( )
void setProportional ( in boolean theProp )
setProportional ( theProp )
void setCycling ( in boolean theCycle )
setCycling ( theCycle )

- - - - - - - - - - - -
interface Result
IDL file
Python
boolean BuildAll ( )
return_value = BuildAll ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface VISU_Gen
IDL file
Python
void SetCurrentStudy ( in Study theStudy )
SetCurrentStudy ( theStudy )
Study GetCurrentStudy ( )
return_value = GetCurrentStudy ( )
ViewManager GetViewManager ( )
return_value = GetViewManager ( )
SObject ImportTables ( in string theFileName )
return_value = ImportTables ( theFileName )
boolean ExportTableToFile ( in SObject theTable, in string theFileName )
return_value = ExportTableToFile ( theTable, theFileName )
Result ImportFile ( in string theFileName )
return_value = ImportFile ( theFileName )
Result CopyAndImportFile ( in string theFileName )
return_value = CopyAndImportFile ( theFileName )
Result ImportMed ( in SObject theMedSObject )
return_value = ImportMed ( theMedSObject )
Result ImportMedField ( in FIELD theField )
return_value = ImportMedField ( theField )
Mesh MeshOnEntity ( in Result theResult, in string theMeshName, in Entity theEntity )
return_value = MeshOnEntity ( theResult, theMeshName, theEntity )
Mesh FamilyMeshOnEntity ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFamilyName )
return_value = FamilyMeshOnEntity ( theResult, theMeshName, theEntity, theFamilyName )
Mesh GroupMesh ( in Result theResult, in string theMeshName, in string theGroupName )
return_value = GroupMesh ( theResult, theMeshName, theGroupName )
ScalarMap ScalarMapOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = ScalarMapOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
DeformedShape DeformedShapeOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = DeformedShapeOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
Vectors VectorsOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = VectorsOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
IsoSurfaces IsoSurfacesOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = IsoSurfacesOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
StreamLines StreamLinesOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = StreamLinesOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
CutPlanes CutPlanesOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = CutPlanesOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
CutLines CutLinesOnField ( in Result theResult, in string theMeshName, in Entity theEntity, in string theFieldName, in double theIteration )
return_value = CutLinesOnField ( theResult, theMeshName, theEntity, theFieldName, theIteration )
Table CreateTable ( in string theTableEntry )
return_value = CreateTable ( theTableEntry )
Curve CreateCurve ( in Table theTable, in long theHRow, in long theVRow )
return_value = CreateCurve ( theTable, theHRow, theVRow )
Container CreateContainer ( )
return_value = CreateContainer ( )
Animation CreateAnimation ( in View3D theView3d )
return_value = CreateAnimation ( theView3d )
void DeleteResult ( in Result theResult )
DeleteResult ( theResult )
void DeletePrs3d ( in Prs3d thePrs3d )
DeletePrs3d ( thePrs3d )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface View
IDL file
Python
void ShowPart ( in ViewRepresentation ViewRepr, in boolean state )
ShowPart ( ViewRepr, state )
boolean IsPartShown ( in ViewRepresentation ViewRepr )
return_value = IsPartShown ( ViewRepr )
void SetViewWidth ( in long Width )
SetViewWidth ( Width )
void SetViewHeight ( in long Height )
SetViewHeight ( Height )
long GetViewWidth ( )
return_value = GetViewWidth ( )
long GetViewHeight ( )
return_value = GetViewHeight ( )
void SetViewPositionHorizontal ( in ViewPosition ViewPosHor )
SetViewPositionHorizontal ( ViewPosHor )
void SetViewPositionVertical ( in ViewPosition ViewPosVer )
SetViewPositionVertical ( ViewPosVer )
void SetRelativePosition ( in double x, in double y )
SetRelativePosition ( x, y )
void SetRelativeSize ( in double x, in double y )
SetRelativeSize ( x, y )
void SetTitle ( in string theTitle )
SetTitle ( theTitle )
string GetTitle ( )
return_value = GetTitle ( )
void SetBackground ( in Color theColor )
SetBackground ( theColor )
Color GetBackground ( )
return_value = GetBackground ( )
void Minimize ( )
Minimize ( )
void Restore ( )
Restore ( )
void Maximize ( )
Maximize ( )
void EraseAll ( )
EraseAll ( )
void DisplayAll ( )
DisplayAll ( )
void Erase ( in PrsObject thePrsObj )
Erase ( thePrsObj )
void Display ( in PrsObject thePrsObj )
Display ( thePrsObj )
void DisplayOnly ( in PrsObject thePrsObj )
DisplayOnly ( thePrsObj )
void Update ( )
Update ( )
boolean SavePicture ( in string theFileName )
return_value = SavePicture ( theFileName )

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface View3D
IDL file
Python
void FitAll ( )
FitAll ( )
void SetView ( in ViewType theType )
SetView ( theType )
void SetPointOfView ( in XYZ theCoord )
SetPointOfView ( theCoord )
XYZ GetPointOfView ( )
return_value = GetPointOfView ( )
void SetViewUp ( in XYZ theDir )
SetViewUp ( theDir )
XYZ GetViewUp ( )
return_value = GetViewUp ( )
void SetFocalPoint ( in XYZ theDir )
SetFocalPoint ( theDir )
XYZ GetFocalPoint ( )
return_value = GetFocalPoint ( )
void SetParallelScale ( in double theScale )
SetParallelScale ( theScale )
double GetParallelScale ( )
return_value = GetParallelScale ( )
void ScaleView ( in Axis theAxis, in double theParam )
ScaleView ( theAxis, theParam )
void RemoveScale ( )
RemoveScale ( )
boolean SaveViewParams ( in string theName )
return_value = SaveViewParams ( theName )
boolean RestoreViewParams ( in string theName )
return_value = RestoreViewParams ( theName )

- - - - - - - -
interface TableView
IDL file
Python

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface XYPlot
IDL file
Python
void SetSubTitle ( in string theTitle )
SetSubTitle ( theTitle )
string GetSubTitle ( )
return_value = GetSubTitle ( )
void SetCurveType ( in CurveType theType )
SetCurveType ( theType )
CurveType GetCurveType ( )
return_value = GetCurveType ( )
void SetMarkerSize ( in long theSize )
SetMarkerSize ( theSize )
long GetMarkerSize ( )
return_value = GetMarkerSize ( )
void EnableXGrid ( in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor )
EnableXGrid ( theMajor, theNumMajor, theMinor, theNumMinor )
void EnableYGrid ( in boolean theMajor, in long theNumMajor, in boolean theMinor, in long theNumMinor )
EnableYGrid ( theMajor, theNumMajor, theMinor, theNumMinor )
void SetHorScaling ( in Scaling theScaling )
SetHorScaling ( theScaling )
Scaling GetHorScaling ( )
return_value = GetHorScaling ( )
void SetVerScaling ( in Scaling theScaling )
SetVerScaling ( theScaling )
Scaling GetVerScaling ( )
return_value = GetVerScaling ( )
void SetXTitle ( in string theTitle )
SetXTitle ( theTitle )
string GetXTitle ( )
return_value = GetXTitle ( )
void SetYTitle ( in string theTitle )
SetYTitle ( theTitle )
string GetYTitle ( )
return_value = GetYTitle ( )
void ShowLegend ( in boolean theShowing )
ShowLegend ( theShowing )
void FitAll ( )
FitAll ( )

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
interface ViewManager
IDL file
Python
View GetCurrentView ( )
return_value = GetCurrentView ( )
View3D Create3DView ( )
return_value = Create3DView ( )
TableView CreateTableView ( in Table theTable )
return_value = CreateTableView ( theTable )
XYPlot CreateXYPlot ( )
return_value = CreateXYPlot ( )
void Destroy ( in View theView )
Destroy ( theView )

-
diff --git a/doc/salome/tui/VISU/doxyfile.in b/doc/salome/tui/VISU/doxyfile.in deleted file mode 100755 index b6574417..00000000 --- a/doc/salome/tui/VISU/doxyfile.in +++ /dev/null @@ -1,241 +0,0 @@ -# Doxyfile 1.4.6 - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- -PROJECT_NAME = "SALOME - VISU - v.@VERSION@" -PROJECT_NUMBER = -OUTPUT_DIRECTORY = ../ -CREATE_SUBDIRS = NO -OUTPUT_LANGUAGE = English -USE_WINDOWS_ENCODING = NO -BRIEF_MEMBER_DESC = YES -REPEAT_BRIEF = NO -ABBREVIATE_BRIEF = -ALWAYS_DETAILED_SEC = YES -INLINE_INHERITED_MEMB = YES -FULL_PATH_NAMES = YES -STRIP_FROM_PATH = ../../../share/salome \ - ../../../build/salome -STRIP_FROM_INC_PATH = -SHORT_NAMES = NO -JAVADOC_AUTOBRIEF = YES -MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO -INHERIT_DOCS = YES -SEPARATE_MEMBER_PAGES = NO -TAB_SIZE = 5 -ALIASES = -OPTIMIZE_OUTPUT_FOR_C = YES -OPTIMIZE_OUTPUT_JAVA = YES -BUILTIN_STL_SUPPORT = NO -DISTRIBUTE_GROUP_DOC = NO -SUBGROUPING = YES - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- -EXTRACT_ALL = YES -EXTRACT_PRIVATE = YES -EXTRACT_STATIC = YES -EXTRACT_LOCAL_CLASSES = YES -EXTRACT_LOCAL_METHODS = NO -HIDE_UNDOC_MEMBERS = NO -HIDE_UNDOC_CLASSES = NO -HIDE_FRIEND_COMPOUNDS = NO -HIDE_IN_BODY_DOCS = NO -INTERNAL_DOCS = YES -CASE_SENSE_NAMES = YES -HIDE_SCOPE_NAMES = NO -SHOW_INCLUDE_FILES = YES -INLINE_INFO = YES -SORT_MEMBER_DOCS = NO -SORT_BRIEF_DOCS = NO -SORT_BY_SCOPE_NAME = NO -GENERATE_TODOLIST = YES -GENERATE_TESTLIST = YES -GENERATE_BUGLIST = YES -GENERATE_DEPRECATEDLIST= YES -ENABLED_SECTIONS = -MAX_INITIALIZER_LINES = 25 -SHOW_USED_FILES = NO -SHOW_DIRECTORIES = NO -FILE_VERSION_FILTER = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- -QUIET = NO -WARNINGS = YES -WARN_IF_UNDOCUMENTED = YES -WARN_IF_DOC_ERROR = YES -WARN_NO_PARAMDOC = NO -WARN_FORMAT = "$file:$line: $text" -WARN_LOGFILE = log.txt - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- -INPUT = ../../../share/salome/src \ - ../../../share/salome/idl -FILE_PATTERNS = *.idl *.h *.hh *.hxx *.c *.cc *.cxx *.ixx *.jxx python_extension_must_be_here -RECURSIVE = YES -EXCLUDE = -EXCLUDE_SYMLINKS = NO -EXCLUDE_PATTERNS = -EXAMPLE_PATH = -EXAMPLE_PATTERNS = -EXAMPLE_RECURSIVE = NO -IMAGE_PATH = sources/ -INPUT_FILTER = -FILTER_PATTERNS = -FILTER_SOURCE_FILES = YES - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- -SOURCE_BROWSER = NO -INLINE_SOURCES = NO -STRIP_CODE_COMMENTS = YES -REFERENCED_BY_RELATION = NO -REFERENCES_RELATION = YES -USE_HTAGS = NO -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- -ALPHABETICAL_INDEX = YES -COLS_IN_ALPHA_INDEX = 3 -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- -GENERATE_HTML = YES -HTML_OUTPUT = VISU -HTML_FILE_EXTENSION = .html -HTML_HEADER = sources/myheader.html -HTML_FOOTER = sources/footer.html -HTML_STYLESHEET = sources/static/doxygen.css -HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = NO -CHM_FILE = -HHC_LOCATION = -GENERATE_CHI = NO -BINARY_TOC = YES -TOC_EXPAND = YES -DISABLE_INDEX = NO -ENUM_VALUES_PER_LINE = 4 -GENERATE_TREEVIEW = NO -TREEVIEW_WIDTH = 250 - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- -GENERATE_LATEX = NO -LATEX_OUTPUT = latex -LATEX_CMD_NAME = latex -MAKEINDEX_CMD_NAME = makeindex -COMPACT_LATEX = NO -PAPER_TYPE = a4wide -EXTRA_PACKAGES = -LATEX_HEADER = -PDF_HYPERLINKS = NO -USE_PDFLATEX = NO -LATEX_BATCHMODE = NO -LATEX_HIDE_INDICES = NO - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- -GENERATE_RTF = NO -RTF_OUTPUT = rtf -COMPACT_RTF = NO -RTF_HYPERLINKS = NO -RTF_STYLESHEET_FILE = -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- -GENERATE_MAN = NO -MAN_OUTPUT = man -MAN_EXTENSION = .3 -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- -GENERATE_XML = NO -XML_OUTPUT = xml -XML_SCHEMA = -XML_DTD = -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- -GENERATE_PERLMOD = NO -PERLMOD_LATEX = NO -PERLMOD_PRETTY = YES -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- -ENABLE_PREPROCESSING = YES -MACRO_EXPANSION = NO -EXPAND_ONLY_PREDEF = NO -SEARCH_INCLUDES = YES -INCLUDE_PATH = -INCLUDE_FILE_PATTERNS = -PREDEFINED = -EXPAND_AS_DEFINED = -SKIP_FUNCTION_MACROS = NO - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- -TAGFILES = -GENERATE_TAGFILE = -ALLEXTERNALS = NO -EXTERNAL_GROUPS = YES -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- -CLASS_DIAGRAMS = YES -HIDE_UNDOC_RELATIONS = NO -HAVE_DOT = YES -CLASS_GRAPH = YES -COLLABORATION_GRAPH = NO -GROUP_GRAPHS = NO -UML_LOOK = NO -TEMPLATE_RELATIONS = YES -INCLUDE_GRAPH = YES -INCLUDED_BY_GRAPH = NO -CALL_GRAPH = NO -GRAPHICAL_HIERARCHY = YES -DIRECTORY_GRAPH = YES -DOT_IMAGE_FORMAT = jpg -DOT_PATH = -DOTFILE_DIRS = -MAX_DOT_GRAPH_WIDTH = 1024 -MAX_DOT_GRAPH_HEIGHT = 1200 -MAX_DOT_GRAPH_DEPTH = 0 -DOT_TRANSPARENT = NO -DOT_MULTI_TARGETS = NO -GENERATE_LEGEND = NO -DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- -SEARCHENGINE = NO diff --git a/doc/salome/tui/VISU/sources/Application-About.png b/doc/salome/tui/VISU/sources/Application-About.png deleted file mode 100755 index 7b58330d..00000000 Binary files a/doc/salome/tui/VISU/sources/Application-About.png and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/Application-About1.jpg b/doc/salome/tui/VISU/sources/Application-About1.jpg deleted file mode 100755 index cf7ab8ba..00000000 Binary files a/doc/salome/tui/VISU/sources/Application-About1.jpg and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/application.gif b/doc/salome/tui/VISU/sources/application.gif deleted file mode 100644 index 0b05d5c1..00000000 Binary files a/doc/salome/tui/VISU/sources/application.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/application.jpg b/doc/salome/tui/VISU/sources/application.jpg deleted file mode 100755 index a6979ab9..00000000 Binary files a/doc/salome/tui/VISU/sources/application.jpg and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/bg_salome.gif b/doc/salome/tui/VISU/sources/bg_salome.gif deleted file mode 100644 index c7e03068..00000000 Binary files a/doc/salome/tui/VISU/sources/bg_salome.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/footer.html b/doc/salome/tui/VISU/sources/footer.html deleted file mode 100755 index cb55f397..00000000 --- a/doc/salome/tui/VISU/sources/footer.html +++ /dev/null @@ -1,5 +0,0 @@ - - - - diff --git a/doc/salome/tui/VISU/sources/logocorp.gif b/doc/salome/tui/VISU/sources/logocorp.gif deleted file mode 100755 index 7697e083..00000000 Binary files a/doc/salome/tui/VISU/sources/logocorp.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/myheader.html b/doc/salome/tui/VISU/sources/myheader.html deleted file mode 100755 index d2efb75f..00000000 --- a/doc/salome/tui/VISU/sources/myheader.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - Main Page - - - - -  - - diff --git a/doc/salome/tui/VISU/sources/occ.gif b/doc/salome/tui/VISU/sources/occ.gif deleted file mode 100755 index ce017c8a..00000000 Binary files a/doc/salome/tui/VISU/sources/occ.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/static/DataStruct.gif b/doc/salome/tui/VISU/sources/static/DataStruct.gif deleted file mode 100755 index bec28ad2..00000000 Binary files a/doc/salome/tui/VISU/sources/static/DataStruct.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/static/PrsObj.gif b/doc/salome/tui/VISU/sources/static/PrsObj.gif deleted file mode 100755 index a8aa81fe..00000000 Binary files a/doc/salome/tui/VISU/sources/static/PrsObj.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/static/View.gif b/doc/salome/tui/VISU/sources/static/View.gif deleted file mode 100755 index b6aa909e..00000000 Binary files a/doc/salome/tui/VISU/sources/static/View.gif and /dev/null differ diff --git a/doc/salome/tui/VISU/sources/static/doxygen.css b/doc/salome/tui/VISU/sources/static/doxygen.css deleted file mode 100755 index 88e613d2..00000000 --- a/doc/salome/tui/VISU/sources/static/doxygen.css +++ /dev/null @@ -1,170 +0,0 @@ -H1 { - text-align: center; -} - -CAPTION { - font-weight: bold -} - -/* Link in the top navbar */ -A.qindex {} - -A.qindexRef {} - -/* Link to any cross-referenced Doxygen element */ -A.el { - text-decoration: none; - font-weight: bold -} - -A.elRef { - font-weight: bold -} - -/* Link to any cross-referenced Doxygen element inside a code section - (ex: header) -*/ -A.code { - text-decoration: none; - font-weight: normal; - color: #4444ee -} - -A.codeRef { - font-weight: normal; - color: #4444ee -} - -A:hover { - text-decoration: none; - background-color: lightblue -} - -DL.el { - margin-left: -1cm -} - -/* A code fragment (ex: header) */ -DIV.fragment { - width: 100%; - border: none; - background-color: #CCCCCC -} - -/* In the alpha list (coumpound index), style of an alphabetical index letter */ -DIV.ah { - background-color: #CCCCCC; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px -} - -/* Method name (+ type) */ -TD.md { - background-color: lightblue; - font-weight: bold; -} - -/* Method parameter (some of them) */ -TD.mdname1 { - background-color: lightblue; - font-weight: bold; color: #602020; -} - -/* Method parameter (some of them) */ -TD.mdname { - background-color: lightblue; - font-weight: bold; - color: #602020; - width: 600px; -} - -/* Separator between methods group (usually empty, seems not supported by IE) */ -DIV.groupHeader { - margin-left: 16px; - margin-top: 12px; - margin-bottom: 6px; - font-weight: bold -} - -DIV.groupText { - margin-left: 16px; - font-style: italic; - font-size: smaller -} - -BODY { - background: #FFFFFF; -} - -/*div.div-page { - background-color: #FFFFFF; - margin-left: 1em; - margin-right: 1em; - margin-top: 1em; - margin-bottom: 0.1em; - - padding-left: 1em; - padding-right: 1em; - padding-top: 0.5em; - padding-bottom: 0.5em; - - border: 2px solid #0D299A; - border-width: 2px; - border-color: #0D299A; -}*/ - -div.tabs { - text-align: justify; - margin-left : 2px; - margin-right : 2px; - margin-top : 2px; - margin-bottom : 2px - font-weight: bold; - color: #FFFFFF; -} - -DIV.div-footer { - margin-left: 1em; - margin-right: 1em; - margin-bottom: 0.2em; - text-align: right; - font-size: 9pt; -} - -/* In File List, Coumpound List, etc, 1st column of the index */ -TD.indexkey { - background-color: #CCCCCC; - font-weight: bold; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px -} - -/* In File List, Coumpound List, etc, 2nd column of the index */ -TD.indexvalue { - background-color: #CCCCCC; - font-style: italic; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px -} - -span.keyword { color: #008000 } -span.keywordtype { color: #604020 } -span.keywordflow { color: #e08000 } -span.comment { color: #800000 } -span.preprocessor { color: #806020 } -span.stringliteral { color: #002080 } -span.charliteral { color: #008080 } diff --git a/doc/salome/tui/VISU/sources/static/examples_VISU.html b/doc/salome/tui/VISU/sources/static/examples_VISU.html deleted file mode 100755 index bd5bca94..00000000 --- a/doc/salome/tui/VISU/sources/static/examples_VISU.html +++ /dev/null @@ -1,1270 +0,0 @@ - - - - - - - - Main Page - - - - -   -
- - - - - - - - -
- - -
-
- -

Examples

-      Interfaces:
-
- VISU::Base

- VISU::VISU_Gen
- VISU::PrsObject
-

- VISU::Result
-
- VISU::Prs3d

- VISU::Mesh
- VISU::ScalarMap
- VISU::CutPlanes
- VISU::CutLines
- VISU::IsoSurfaces
- VISU::DeformedShape
- VISU::Vectors
- VISU::StreamLines
-
- VISU::Table
- VISU::Curve
- VISU::Container
-
- VISU::ViewManager

- VISU::View
- VISU::View3D
- VISU::TableView
- VISU::XYPlot
- -

Base

- - - - - - - - - - - - -
IdType - VISU::Base::GetID   -
-
- -

#Returns ID of the object. That is IOR of CORBA representation a VISU -object.
-

- -

aSObject = myLocalStudy.FindObjectIOR(theResult.GetID())
-

- - - - - - - - - - - -
VISUType - VISU::Base::GetType   -
- -

#Returns the type of the presentable object. It can be used for quick -class definition of an VISU object
-
- if aVISUObject.GetType() == VISU.TSCALARMAP :
-     #do something ...
-

- -


-

-

VISU_Gen
-

- - - - - - - - - - - - - -
void VISU::VISU_Gen::SetCurrentStudy - in SALOMEDS::Study   theStudy -
-
-
- -

- - - - - - - -
- - - - - - - - - - - -
SALOMEDS::Study -VISU::VISU_Gen::GetCurrentStudy   -
-
-
-
- #It is very important to set SALOMEDS::Study for VISU Engine before you -start any work with them.
- #Every object that you will create will be assigned to the study you set -before.
- #It can be done like this:
-

- -

aStudy = myStudyManager.NewStudy("A foo Study")
- if aStudy is None : raise RuntimeError, "Error"
- else : print "OK"
-     theVisuGen.SetCurrentStudy(aStudy)
-     #to do every things you like
-     ...
-

- -

- - - - - - - -
- - - - - - - - - - - -
ViewManager -VISU::VISU_Gen::GetViewManager   -
-
-
- - - - - - - - - -
  -

Gets the ViewManager which is used for creation of post-processing -presentations.

-
-
- #In order to display any VISU::PrsObject in propriate viewer you must take -VISU::ViewManager interface
-

- -

aViewManager = myVisuGen.GetViewManager()
- #to do something for displaing some presentation
- ...
-

- -

- - - - - - - -
- - - - - - - - - - - - -
SALOMEDS::SObject -VISU::VISU_Gen::ImportTables in string   theFileName -
-
-
- - - - - - - - - -
  -

Imports tables from a file and create TableAttribute in Sudy -

-
-
- #It is possible to import some ASCII files that include text table representation. -One file can consist from more than one table.
-

- -

aSObject = myVisuGen.ImportTables("/MyPresicousFileOfTables.txt")
-

- -

- - - - - - - -
- - - - - - - - - - - - -
Result -VISU::VISU_Gen::ImportFile in string   theFileName -
-
-
- - - - - - - - - -
  -

Imports data from a file.

-
-
- #It is possible import a med files to VISU
-

- -

aResult = myVisuGen.ImportFile("/ItIsDreamOfMyLife.med")
-

- -

- - - - - - - -
- - - - - - - - - - - - -
Result -VISU::VISU_Gen::ImportMed in SALOMEDS::SObject   theMedSObject -
-
-
- - - - - - - - - -
  -

Imports data from a MED object.

-
-
- #
-

- -

- - - - - - - -
- - - - - - - - - - - - -
Result -VISU::VISU_Gen::ImportMedField in SALOME_MED::FIELD   theField -
-
-
- - - - - - - - - -
  -

Imports data from a MED field.

-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mesh -VISU::VISU_Gen::MeshOnEntity in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity

-

-
-
- - - - - - - - - -
  -

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

-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mesh -VISU::VISU_Gen::FamilyMeshOnEntity in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFamilyName

-

-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mesh -VISU::VISU_Gen::GroupMesh in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in string   theGroupName

-

-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ScalarMap -VISU::VISU_Gen::ScalarMapOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - - - - - -
  -

Creates a scalar bar presentation.

- -
-
Parameters:
-
- - - - - - - - - - - - - - - - - - - - - - - - -
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
-
-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DeformedShape -VISU::VISU_Gen::DeformedShapeOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - - - - - -
  -

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
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
-
-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Vectors -VISU::VISU_Gen::VectorsOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - - - - - -
  -

Creates a vector presentation.

- -
-
Parameters:
-
- - - - - - - - - - - - - - - - - - - - - - - - -
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
-
-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IsoSurfaces -VISU::VISU_Gen::IsoSurfacesOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - - - - - -
  -

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
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
-
-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StreamLines -VISU::VISU_Gen::StreamLinesOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - - - - - -
  -

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
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
-
-
-
-

- -

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CutPlanes -VISU::VISU_Gen::CutPlanesOnField in Result   theResult, -

-

-
in string   theMeshName, -

-

-
in Entity   theEntity, -

-

-
in string   theFieldName, -

-

-
in double   theIteration

-

-
-
- - - - - -
  -

Creates a presentation of cut planes.

- -
-
Parameters:
-
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/doc/salome/tui/VISU/sources/static/overview_VISU.html b/doc/salome/tui/VISU/sources/static/overview_VISU.html deleted file mode 100755 index f6f54eaa..00000000 --- a/doc/salome/tui/VISU/sources/static/overview_VISU.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - Main Page - - - -  -
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 
- - - - - - -
-
-
- - -

General overview -

-

Table of contents

- - -
-

1. Introduction

-

Post-processing module VISU for SALOME is destined for visualization of data - produced by other components. VISU provides various forms of data visualization - including:

- -
    -
  • Data tables,
  • -
  • XY plots based on data from tables,
  • -
  • 3D presentations,
  • -
      -
    • Scalar Map,
    • -
    • Deformed Shape,
    • -
    • Vectors,
    • -
    • Iso Surfaces,
    • -
    • Cut Planes,
    • -
    • Stream Lines,
    • -
    • Cut Lines.
    • -
    -
-Back to the contents -

2. Defintions

-

The following terms are used for presentation of the VISU module:

-
-
Study
-
manages data produced by various component of SALOME platform. More detailed description of the SALOME Study can be found in the document named "Data Structure and Persistence Specifications".
-
Component
-
a SALOME software module that implements predefined interfaces. -The component provides the data for the SALOME study in a form of links (stored in the Study) -to the specific data stored in the component. All components are CORBA servers and it allows them -to be running on different host stations.
-
Geometry
a coherent set of data produced by component GEOM or any other geometry tool -and imported using geometry exchange interface (like BRep, IGES and so on).
-
Mesh
a collection of elements used as a support for numeric simulation.
-
Field
the set of results of the same type allocated to mesh elements. -Fields can be one of next types: scalars, vectors, tensors, matrices, character strings.
-
-Back to the contents -

3. Forms of data visualization

-

3.1 Data tables

-

Table represents data in spreadsheet-like form. For these purposes the QTable - widget will be provided. This widget can be reused in any module for any dialog - box as a control. For post-processing data visualization needs this widget is - used inside of Table window (based on non-modal window frame). Data represented - in Table window of post-processing module is be editable.

-

3.2 XY plots

-

XY plot represents calculation data in form of 2D (XY) plotting. -XY plot view is shown in a separated view window (non-modal dialog box), which can be moved in any position of the screen for convenience. -The QWT extension of QT toolkit is used for XY plotting. -QWT provides unlimited number of displayed curves (data sets) and supports logarithmic scale, zooming, and selection.

- -

3.3 3D presentations

-

A 3D presentation shows geometry, mesh and fields in 3D space. -Provides selection, rotation, zooming, scaling, and panning of 3d scene. -Color bar for scalar data presentation is supplied. -For 3D presentation window of the current implementation of VTK viewer in study window is used.

-Back to the contents -

4. Data structure

-

Source data for post-processing module can be imported from MED file or MED object in study data structure (CORBA object) can be used for this purposes.

-

In case of import MED file the data from this file will be converted in form of VTK Data Source format and stored in VISU data structure. In case of using of MED object from study the label in VISU data structure will be created with reference to the corresponded MED object.

-

Available result data is displayed under corresponded MED data label. For every result the number of presentations can be created dependently on result type.

-

Presentation is represented in data structure in form of list of presentation creation parameters. This could be:

-
    -
  • Presentation type (table, XY plot, 3d view);
  • -
  • Presentation subtype (for example for 3d: scalar map, iso-surfaces, combined view and so on);
  • -
  • Parameters of the presentation dependently on its type (number of colors, type of scale, font parameters, grid parameters and so on).
  • -
-

Parameters of presentation are persistent data, which will be stored in study file.

- - -
-Back to the contents -

5. VISU module features and services

-

The functionality of the VISU module is provided by a set of classes which are combined into -the VISU package. -

The API reference of the VISU component can be found here.

-

5.1 Base class

-

This is a root class for all objects of the VISU module.

-

The API reference for this class can be found here.

- -

5.2 ViewManager class

-

This class is used for management of the view windows (creation and deletion).

-

The API reference for this class can be found here.

- -

5.3 View class

-

View class is a base for all other classes, necessary for creation of different views .

- -
-

The API reference for this class can be found here.

- -

5.3.1 3dView class

-

This class provides a set of methods for creation of a 3d view window.

-

The API reference for this class can be found here.

- -

5.3.2 TableView class

-

This class provides a set of methods for creation of a Table view window.

-

The API reference for this class can be found here.

- -

5.3.3 XYPlotView class

-

This class provides a set of methods for creation of a XYPlot view window.

-

The API reference for this class can be found here.

- -

5.4 Result class

-

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

-

The API reference for this class can be found here.

-

5.5 PrsObject class

-

It is the root class of all presentable objects.

-
-

The API reference for this class can be found here.

- -

5.5.1 Curve class

-

Manages presentation parameters of one curve. -This object can be used for presentation of set of curves using Container class.

-

The API reference for this class can be found here.

- -

5.5.2 Table class

-

Manages presentation parameters of a table.

-

The API reference for this class can be found here.

- -

5.5.3 Container class

-

This class is provided in order to create one presentation using several presentable objects. This can provide combination of a set of curves to display them in XY plot view. -

-

The API reference for this class can be found here.

- -

5.5.4 Prs3d class

-

Root class for all 3D presentations.

-

The API reference for this class can be found here.

- -

5.5.5 Mesh class

-

Manages presentation parameters of a 3D presentattion of a mesh. -This object can be used for presentation of set of curves using Container class.

-

The API reference for this class can be found here.

- -

5.5.6 ScalarMap class

-

Manages presentation parameters of the scalar bar.

-

The API reference for this class can be found here.

- -

5.5.7 CutLines class

-

Manages presentation parameters of the cut lines presentation.

-

The API reference for this class can be found here.

- -

5.5.8 CutPlanes class

-

Manages presentation parameters of the cut planes presentation.

-

The API reference for this class can be found here.

- -

5.5.9 IsoSurfaces class

-

Manages presentation parameters of the iso surfaces presentation.

-

The API reference for this class can be found here.

- -

5.5.10 DeformedShape class

-

Manages presentation parameters of the deformed shape presentation.

-

The API reference for this class can be found here.

- -

5.5.11 Vectors class

-

Manages presentation parameters of the vector presentation.

-

The API reference for this class can be found here.

- -

5.5.12 StreamLines class

-

Manages presentation parameters of the streamlines presentation.

-

The API reference for this class can be found here.

- -

5.6 Animation class

-

This class provides a set of methods used for:

-
    -
  • generating different animations,
  • -
  • setting the parameters of the animations,
  • -
  • playing these animations in the VISU module.
  • -
-

The API reference for this class can be found here.

- -

5.7 VISU_Gen class

-

This is the main clas of the VISU component in SALOME application. It is used for , -using the views provided by ViewManager. This class provides a set of methods used for:

-
    -
  • creation of all types of post-processing presentations from given Result and Table object reference
  • -
  • creation of animations
  • - -
-

The API reference for this class can be found here.

-Back to the contents - - diff --git a/doc/salome/tui/VISU/sources/static/page2.html b/doc/salome/tui/VISU/sources/static/page2.html deleted file mode 100755 index d31cf0c4..00000000 --- a/doc/salome/tui/VISU/sources/static/page2.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - Main Page - - - -  -
- - - - - - -
-
-
- - - - - - - - diff --git a/doc/salome/tui/VISU/sources/static/tree.js.in b/doc/salome/tui/VISU/sources/static/tree.js.in deleted file mode 100755 index 8903b2ab..00000000 --- a/doc/salome/tui/VISU/sources/static/tree.js.in +++ /dev/null @@ -1,85 +0,0 @@ -foldersTree = gFld("SALOME v.@VERSION@ ", "", "") - insDoc(foldersTree, gLnk("Main Page", "", "main.html")) - -aux1 = insFld(foldersTree, gFld("TUI Reference Guide", "")) - aux2 = insFld(aux1, gFld("Modules", "")) - aux3 = insFld(aux2, gFld("SALOME VISU module", "")) - insDoc(aux3, gLnk("Overview", "", "overview_VISU.html")) - aux4 = insFld(aux3, gFld("Packages", "")) - insDoc(aux4, gLnk("VISU", "", "namespaceVISU.html")) - insDoc(aux3, gLnk("Examples", "", "examples_VISU.html")) - - -/*! Data structures -*/ - insDoc(aux1, gLnk("Data Structures", "", "annotated.html")) - -/*! insDoc(aux1, gLnk("VISU::Animation", "", "interfaceVISU_1_1Animation.html")) - insDoc(aux1, gLnk("VISU::Base", "", "interfaceVISU_1_1Base.html")) - insDoc(aux1, gLnk("VISU::Container", "", "interfaceVISU_1_1Container.html")) - insDoc(aux1, gLnk("VISU::Curve", "", "interfaceVISU_1_1Curve.html")) - insDoc(aux1, gLnk("VISU::CutLines", "", "interfaceVISU_1_1CutLines.html")) - insDoc(aux1, gLnk("VISU::CutPlanes", "", "interfaceVISU_1_1CutPlanes.html")) - insDoc(aux1, gLnk("VISU::DeformedShape", "", "interfaceVISU_1_1DeformedShape.html")) - insDoc(aux1, gLnk("VISU::IsoSurfaces", "", "interfaceVISU_1_1IsoSurfaces.html")) - insDoc(aux1, gLnk("VISU::Mesh", "", "interfaceVISU_1_1Mesh.html")) - insDoc(aux1, gLnk("VISU::Prs3d", "", "interfaceVISU_1_1Prs3d.html")) - insDoc(aux1, gLnk("VISU::PrsObject", "", "interfaceVISU_1_1PrsObject.html")) - insDoc(aux1, gLnk("VISU::Result", "", "interfaceVISU_1_1Result.html")) - insDoc(aux1, gLnk("VISU::ScalarMap", "", "interfaceVISU_1_1ScalarMap.html")) - insDoc(aux1, gLnk("VISU::StreamLines", "", "interfaceVISU_1_1StreamLines.html")) - insDoc(aux1, gLnk("VISU::Table", "", "interfaceVISU_1_1Table.html")) - insDoc(aux1, gLnk("VISU::TableView", "", "interfaceVISU_1_1TableView.html")) - insDoc(aux1, gLnk("VISU::Vectors", "", "interfaceVISU_1_1Vectors.html")) - insDoc(aux1, gLnk("VISU::View", "", "interfaceVISU_1_1View.html")) - insDoc(aux1, gLnk("VISU::View3D", "", "interfaceVISU_1_1View3D.html")) - insDoc(aux1, gLnk("VISU::ViewManager", "", "interfaceVISU_1_1ViewManager.html")) - insDoc(aux1, gLnk("VISU::VISU_Gen", "", "interfaceVISU_1_1VISU__Gen.html")) - insDoc(aux1, gLnk("VISU::XYPlot", "", "interfaceVISU_1_1XYPlot.html")) -*/ - insDoc(aux1, gLnk("Class Hierarchy", "", "hierarchy.html")) - -/*! - aux2 = insFld(aux1, gFld("VISU::Base", "", "interfaceVISU_1_1Base.html")) - insDoc(aux2, gLnk("VISU::Animation", "", "interfaceVISU_1_1Animation.html")) - aux3 = insFld(aux2, gFld("VISU::PrsObject", "", "interfaceVISU_1_1PrsObject.html")) - insDoc(aux3, gLnk("VISU::Container", "", "interfaceVISU_1_1Container.html")) - insDoc(aux3, gLnk("VISU::Curve", "", "interfaceVISU_1_1Curve.html")) - aux4 = insFld(aux3, gFld("VISU::Prs3d", "", "interfaceVISU_1_1Prs3d.html")) - insDoc(aux4, gLnk("VISU::Mesh", "", "interfaceVISU_1_1Mesh.html")) - aux5 = insFld(aux4, gFld("VISU::ScalarMap", "", "interfaceVISU_1_1ScalarMap.html")) - insDoc(aux5, gLnk("VISU::CutLines", "", "interfaceVISU_1_1CutLines.html")) - insDoc(aux5, gLnk("VISU::CutPlanes", "", "interfaceVISU_1_1CutPlanes.html")) - aux6 = insFld(aux5, gFld("VISU::DeformedShape", "", "interfaceVISU_1_1DeformedShape.html")) - insDoc(aux6, gLnk("VISU::StreamLines", "", "interfaceVISU_1_1StreamLines.html")) - insDoc(aux6, gLnk("VISU::Vectors", "", "interfaceVISU_1_1Vectors.html")) - insDoc(aux5, gLnk("VISU::IsoSurfaces", "", "interfaceVISU_1_1IsoSurfaces.html")) - insDoc(aux3, gLnk("VISU::Table", "", "interfaceVISU_1_1Table.html")) - insDoc(aux2, gLnk("VISU::Result", "", "interfaceVISU_1_1Result.html")) - aux3 = insFld(aux2, gFld("VISU::View", "", "interfaceVISU_1_1View.html")) - insDoc(aux3, gLnk("VISU::TableView", "", "interfaceVISU_1_1TableView.html")) - insDoc(aux3, gLnk("VISU::View3D", "", "interfaceVISU_1_1View3D.html")) - insDoc(aux3, gLnk("VISU::XYPlot", "", "interfaceVISU_1_1XYPlot.html")) - insDoc(aux2, gLnk("VISU::ViewManager", "", "interfaceVISU_1_1ViewManager.html")) - insDoc(aux2, gLnk("VISU::VISU_Gen", "", "interfaceVISU_1_1VISU__Gen.html")) - insDoc(aux2, gLnk("VISU::VISU_Gen", "", "interfaceVISU_1_1VISU__Gen.html")) - insDoc(aux2, gLnk("VISU::VISU_Gen", "", "interfaceVISU_1_1VISU__Gen.html")) -*/ - insDoc(aux1, gLnk("Class methods list", "", "functions.html")) -/*! -aux1 = insFld(foldersTree, gFld("Namespace List", "", "namespaces.html")) - insDoc(aux1, gLnk("VISU", "", "namespaceVISU.html")) -*/ - insDoc(aux1, gLnk("Namespace Members", "", "namespacemembers.html")) - - insDoc(aux1, gLnk("File List", "", "files.html")) - -/*! - insDoc(aux1, gLnk("VISU_Gen.idl", "", "VISU__Gen_8idl.html")) -*/ - -aux1 = insFld(foldersTree, gFld("IDL/Python mapping", "")) - insDoc(aux1, gLnk("Mapping of VISU IDL definitions to Python language", "", "page2.html")) - -/*! insDoc(foldersTree, gLnk("Graphical Class Hierarchy", "", "inherits.html")) -*/ diff --git a/doc/salome/tui/VISU/sources/static/treeview.js b/doc/salome/tui/VISU/sources/static/treeview.js deleted file mode 100644 index 55eb43d0..00000000 --- a/doc/salome/tui/VISU/sources/static/treeview.js +++ /dev/null @@ -1,505 +0,0 @@ -//**************************************************************** -// You are free to copy the "Folder-Tree" script as long as you -// keep this copyright notice: -// Script found in: http://www.geocities.com/Paris/LeftBank/2178/ -// Author: Marcelino Alves Martins (martins@hks.com) December '97. -//**************************************************************** - -//Log of changes: -// 17 Feb 98 - Fix initialization flashing problem with Netscape -// -// 27 Jan 98 - Root folder starts open; support for USETEXTLINKS; -// make the ftien4 a js file -// -// DvH: Dec 2000 - Made some minor changes to support external -// references - -// Definition of class Folder -// ***************************************************************** - -function Folder(folderDescription, tagName, hreference) //constructor -{ - //constant data - this.desc = folderDescription - this.tagName = tagName - this.hreference = hreference - this.id = -1 - this.navObj = 0 - this.iconImg = 0 - this.nodeImg = 0 - this.isLastNode = 0 - - //dynamic data - this.isOpen = true - this.iconSrc = "ftv2folderopen.png" - this.children = new Array - this.nChildren = 0 - - //methods - this.initialize = initializeFolder - this.setState = setStateFolder - this.addChild = addChild - this.createIndex = createEntryIndex - this.hide = hideFolder - this.display = display - this.renderOb = drawFolder - this.totalHeight = totalHeight - this.subEntries = folderSubEntries - this.outputLink = outputFolderLink -} - -function setStateFolder(isOpen) -{ - var subEntries - var totalHeight - var fIt = 0 - var i=0 - - if (isOpen == this.isOpen) - return - - if (browserVersion == 2) - { - totalHeight = 0 - for (i=0; i < this.nChildren; i++) - totalHeight = totalHeight + this.children[i].navObj.clip.height - subEntries = this.subEntries() - if (this.isOpen) - totalHeight = 0 - totalHeight - for (fIt = this.id + subEntries + 1; fIt < nEntries; fIt++) - indexOfEntries[fIt].navObj.moveBy(0, totalHeight) - } - this.isOpen = isOpen - propagateChangesInState(this) -} - -function propagateChangesInState(folder) -{ - var i=0 - - if (folder.isOpen) - { - if (folder.nodeImg) - if (folder.isLastNode) - folder.nodeImg.src = "ftv2mlastnode.png" - else - folder.nodeImg.src = "ftv2mnode.png" - folder.iconImg.src = "ftv2folderopen.png" - for (i=0; i 0) - auxEv = "" - else - auxEv = "" - - if (level>0) - if (lastNode) //the last 'brother' in the children array - { - this.renderOb(leftSide + auxEv + "") -// leftSide = leftSide + "" - this.isLastNode = 1 - } - else - { - this.renderOb(leftSide + auxEv + "") - leftSide = leftSide + "" - this.isLastNode = 0 - } - else - this.renderOb("") - - if (nc > 0) - { - level = level + 1 - for (i=0 ; i < this.nChildren; i++) - { - if (i == this.nChildren-1) - this.children[i].initialize(level, 1, leftSide) - else - this.children[i].initialize(level, 0, leftSide) - } - } -} - -function drawFolder(leftSide) -{ - if (browserVersion == 2) { - if (!doc.yPos) - doc.yPos=8 - doc.write("") - } - if (browserVersion == 3) - { - doc.write("
") - } - - doc.write("\n") - doc.write("\n\n") - doc.write("\n
") - doc.write(leftSide) - this.outputLink() - doc.write("") - doc.write("") - if (USETEXTLINKS) - { - this.outputLink() - doc.write(this.desc + "") - } - else - doc.write(this.desc) - -/*! - if (this.tagName!="") - { - doc.write(" [external]") - } -*/ - doc.write("
\n") - - if (browserVersion == 2) { - doc.write("") - } - if (browserVersion == 3) { - doc.write("
") - } - - if (browserVersion == 1) { - this.navObj = doc.all["folder"+this.id] - this.iconImg = doc.all["folderIcon"+this.id] - this.nodeImg = doc.all["nodeIcon"+this.id] - } else if (browserVersion == 2) { - this.navObj = doc.layers["folder"+this.id] - this.iconImg = this.navObj.document.images["folderIcon"+this.id] - this.nodeImg = this.navObj.document.images["nodeIcon"+this.id] - doc.yPos=doc.yPos+this.navObj.clip.height - } else if (browserVersion == 3) { - this.navObj = doc.getElementById("folder"+this.id) - this.iconImg = doc.images.namedItem("folderIcon"+this.id) - this.nodeImg = doc.images.namedItem("nodeIcon"+this.id) - } -} - -function outputFolderLink() -{ - if (this.hreference) - { - doc.write(" 0) - doc.write("onClick='javascript:clickOnFolder("+this.id+")'") - doc.write(">") - } - else - doc.write("") -} - -function addChild(childNode) -{ - this.children[this.nChildren] = childNode - this.nChildren++ - return childNode -} - -function folderSubEntries() -{ - var i = 0 - var se = this.nChildren - - for (i=0; i < this.nChildren; i++){ - if (this.children[i].children) //is a folder - se = se + this.children[i].subEntries() - } - - return se -} - - -// Definition of class Item (a document or link inside a Folder) -// ************************************************************* - -function Item(itemDescription, tagName, itemLink) // Constructor -{ - // constant data - this.desc = itemDescription - this.tagName = tagName - this.link = itemLink - this.id = -1 //initialized in initalize() - this.navObj = 0 //initialized in render() - this.iconImg = 0 //initialized in render() - this.iconSrc = "ftv2doc.png" - - // methods - this.initialize = initializeItem - this.createIndex = createEntryIndex - this.hide = hideItem - this.display = display - this.renderOb = drawItem - this.totalHeight = totalHeight -} - -function hideItem() -{ - if (browserVersion == 1 || browserVersion == 3) { - if (this.navObj.style.display == "none") - return - this.navObj.style.display = "none" - } else { - if (this.navObj.visibility == "hidden") - return - this.navObj.visibility = "hidden" - } -} - -function initializeItem(level, lastNode, leftSide) -{ - this.createIndex() - - if (level>0) - if (lastNode) //the last 'brother' in the children array - { - this.renderOb(leftSide + "") - leftSide = leftSide + "" - } - else - { - this.renderOb(leftSide + "") - leftSide = leftSide + "" - } - else - this.renderOb("") -} - -function drawItem(leftSide) -{ - if (browserVersion == 2) - doc.write("") - if (browserVersion == 3) - doc.write("
") - - doc.write("\n\n") - doc.write("\n
") - doc.write(leftSide) - if (this.link!="") - { - doc.write("") - } - doc.write("") - if (this.link!="") - { - doc.write("") - } - doc.write("") - if (USETEXTLINKS && this.link!="") - doc.write("" + this.desc + "") - else - doc.write(this.desc) -/*! - if (this.tagName!="") - { - doc.write(" [external]"); - } -*/ - doc.write("\n
\n") - - if (browserVersion == 2) - doc.write("") - if (browserVersion == 3) - doc.write("
") - - if (browserVersion == 1) { - this.navObj = doc.all["item"+this.id] - this.iconImg = doc.all["itemIcon"+this.id] - } else if (browserVersion == 2) { - this.navObj = doc.layers["item"+this.id] - this.iconImg = this.navObj.document.images["itemIcon"+this.id] - doc.yPos=doc.yPos+this.navObj.clip.height - } else if (browserVersion == 3) { - this.navObj = doc.getElementById("item"+this.id) - this.iconImg = doc.images.namedItem("itemIcon"+this.id) - } -} - - -// Methods common to both objects (pseudo-inheritance) -// ******************************************************** - -function display() -{ - if (browserVersion == 1 || browserVersion == 3) - this.navObj.style.display = "block" - else - this.navObj.visibility = "show" -} - -function createEntryIndex() -{ - this.id = nEntries - indexOfEntries[nEntries] = this - nEntries++ -} - -// total height of subEntries open -function totalHeight() //used with browserVersion == 2 -{ - var h = this.navObj.clip.height - var i = 0 - - if (this.isOpen) //is a folder and _is_ open - for (i=0 ; i < this.nChildren; i++) - h = h + this.children[i].totalHeight() - - return h -} - - -// Events -// ********************************************************* - -function clickOnFolder(folderId) -{ - var clicked = indexOfEntries[folderId] - - if (!clicked.isOpen) - clickOnNode(folderId) - - return - - if (clicked.isSelected) - return -} - -function clickOnNode(folderId) -{ - var clickedFolder = 0 - var state = 0 - - clickedFolder = indexOfEntries[folderId] - state = clickedFolder.isOpen - - clickedFolder.setState(!state) //open<->close -} - -function initializeDocument() -{ - doc = document; - if (doc.all) - browserVersion = 1 //IE4 - else - if (doc.layers) - browserVersion = 2 //NS4 - else if(navigator.userAgent.toLowerCase().indexOf('gecko') != -1) - browserVersion = 3 //mozilla - else - browserVersion = 0 //other - - foldersTree.initialize(0, 1, "") - foldersTree.display() - - if (browserVersion > 0) - { - if(browserVersion != 3) - doc.write(" ") - - // close the whole tree - clickOnNode(0) - // open the root folder - clickOnNode(0) - } -} - -// Auxiliary Functions for Folder-Treee backward compatibility -// ********************************************************* - -function gFld(description, tagName, hreference) -{ - folder = new Folder(description, tagName, hreference) - return folder -} - -function gLnk(description, tagName, linkData) -{ - fullLink = "" - - if (linkData!="") - { - fullLink = "'"+linkData+"' target=\"basefrm\"" - } - - linkItem = new Item(description, tagName, fullLink) - return linkItem -} - -function insFld(parentFolder, childFolder) -{ - return parentFolder.addChild(childFolder) -} - -function insDoc(parentFolder, document) -{ - parentFolder.addChild(document) -} - -// Global variables -// **************** - -USETEXTLINKS = 1 -indexOfEntries = new Array -nEntries = 0 -doc = document -browserVersion = 0 -selectedFolder=0 diff --git a/doc/salome/tui/doxyfile.in b/doc/salome/tui/doxyfile.in new file mode 100755 index 00000000..3f7bde4a --- /dev/null +++ b/doc/salome/tui/doxyfile.in @@ -0,0 +1,242 @@ +# Doxyfile 1.4.6 + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- +PROJECT_NAME = "Post-Pro Module Programming Guide v.@VERSION@" +PROJECT_NUMBER = +OUTPUT_DIRECTORY = VISU +CREATE_SUBDIRS = NO +OUTPUT_LANGUAGE = English +USE_WINDOWS_ENCODING = NO +BRIEF_MEMBER_DESC = YES +REPEAT_BRIEF = NO +ABBREVIATE_BRIEF = +ALWAYS_DETAILED_SEC = YES +INLINE_INHERITED_MEMB = YES +FULL_PATH_NAMES = YES +STRIP_FROM_PATH = @top_srcdir@ @top_builddir@ +STRIP_FROM_INC_PATH = +SHORT_NAMES = NO +JAVADOC_AUTOBRIEF = YES +MULTILINE_CPP_IS_BRIEF = NO +DETAILS_AT_TOP = NO +INHERIT_DOCS = YES +SEPARATE_MEMBER_PAGES = NO +TAB_SIZE = 5 +ALIASES = +OPTIMIZE_OUTPUT_FOR_C = YES +OPTIMIZE_OUTPUT_JAVA = YES +BUILTIN_STL_SUPPORT = @DOXYGEN_SUPPORT_STL@ +DISTRIBUTE_GROUP_DOC = NO +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- +EXTRACT_ALL = YES +EXTRACT_PRIVATE = YES +EXTRACT_STATIC = YES +EXTRACT_LOCAL_CLASSES = YES +EXTRACT_LOCAL_METHODS = NO +HIDE_UNDOC_MEMBERS = NO +HIDE_UNDOC_CLASSES = NO +HIDE_FRIEND_COMPOUNDS = NO +HIDE_IN_BODY_DOCS = NO +INTERNAL_DOCS = YES +CASE_SENSE_NAMES = YES +HIDE_SCOPE_NAMES = NO +SHOW_INCLUDE_FILES = YES +INLINE_INFO = YES +SORT_MEMBER_DOCS = NO +SORT_BRIEF_DOCS = NO +SORT_BY_SCOPE_NAME = NO +GENERATE_TODOLIST = YES +GENERATE_TESTLIST = YES +GENERATE_BUGLIST = YES +GENERATE_DEPRECATEDLIST= YES +ENABLED_SECTIONS = +MAX_INITIALIZER_LINES = 25 +SHOW_USED_FILES = NO +SHOW_DIRECTORIES = NO +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- +QUIET = NO +WARNINGS = YES +WARN_IF_UNDOCUMENTED = YES +WARN_IF_DOC_ERROR = YES +WARN_NO_PARAMDOC = NO +WARN_FORMAT = "$file:$line: $text" +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- +INPUT = @top_srcdir@/src \ + @top_srcdir@/bin \ + @top_srcdir@/idl \ + @top_builddir@/bin +FILE_PATTERNS = *.idl *.hxx *.cxx *.h *.c *.hh *.cc @DOXYGEN_PYTHON_EXTENSION@ +RECURSIVE = YES +EXCLUDE = +EXCLUDE_SYMLINKS = NO +EXCLUDE_PATTERNS = +EXAMPLE_PATH = +EXAMPLE_PATTERNS = +EXAMPLE_RECURSIVE = NO +IMAGE_PATH = @srcdir@/images +INPUT_FILTER = +FILTER_PATTERNS = +FILTER_SOURCE_FILES = YES + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- +SOURCE_BROWSER = NO +INLINE_SOURCES = NO +STRIP_CODE_COMMENTS = YES +REFERENCED_BY_RELATION = NO +REFERENCES_RELATION = YES +USE_HTAGS = NO +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- +ALPHABETICAL_INDEX = YES +COLS_IN_ALPHA_INDEX = 3 +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- +GENERATE_HTML = YES +HTML_OUTPUT = . +HTML_FILE_EXTENSION = .html +HTML_HEADER = @srcdir@/static/myheader.html +HTML_FOOTER = @srcdir@/static/footer.html +HTML_STYLESHEET = @srcdir@/static/doxygen.css +HTML_ALIGN_MEMBERS = YES +GENERATE_HTMLHELP = NO +CHM_FILE = +HHC_LOCATION = +GENERATE_CHI = NO +BINARY_TOC = YES +TOC_EXPAND = YES +DISABLE_INDEX = NO +ENUM_VALUES_PER_LINE = 4 +GENERATE_TREEVIEW = NO +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- +GENERATE_LATEX = NO +LATEX_OUTPUT = latex +LATEX_CMD_NAME = latex +MAKEINDEX_CMD_NAME = makeindex +COMPACT_LATEX = NO +PAPER_TYPE = a4wide +EXTRA_PACKAGES = +LATEX_HEADER = +PDF_HYPERLINKS = NO +USE_PDFLATEX = NO +LATEX_BATCHMODE = NO +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- +GENERATE_RTF = NO +RTF_OUTPUT = rtf +COMPACT_RTF = NO +RTF_HYPERLINKS = NO +RTF_STYLESHEET_FILE = +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- +GENERATE_MAN = NO +MAN_OUTPUT = man +MAN_EXTENSION = .3 +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- +GENERATE_XML = NO +XML_OUTPUT = xml +XML_SCHEMA = +XML_DTD = +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- +GENERATE_PERLMOD = NO +PERLMOD_LATEX = NO +PERLMOD_PRETTY = YES +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- +ENABLE_PREPROCESSING = YES +MACRO_EXPANSION = NO +EXPAND_ONLY_PREDEF = NO +SEARCH_INCLUDES = YES +INCLUDE_PATH = +INCLUDE_FILE_PATTERNS = +PREDEFINED = +EXPAND_AS_DEFINED = +SKIP_FUNCTION_MACROS = NO + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- +TAGFILES = +GENERATE_TAGFILE = +ALLEXTERNALS = NO +EXTERNAL_GROUPS = YES +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- +CLASS_DIAGRAMS = YES +HIDE_UNDOC_RELATIONS = NO +HAVE_DOT = YES +CLASS_GRAPH = YES +COLLABORATION_GRAPH = NO +GROUP_GRAPHS = NO +UML_LOOK = NO +TEMPLATE_RELATIONS = YES +INCLUDE_GRAPH = YES +INCLUDED_BY_GRAPH = NO +CALL_GRAPH = NO +GRAPHICAL_HIERARCHY = YES +DIRECTORY_GRAPH = YES +DOT_IMAGE_FORMAT = jpg +DOT_PATH = +DOTFILE_DIRS = +MAX_DOT_GRAPH_WIDTH = 1024 +MAX_DOT_GRAPH_HEIGHT = 1200 +MAX_DOT_GRAPH_DEPTH = 0 +DOT_TRANSPARENT = NO +DOT_MULTI_TARGETS = NO +GENERATE_LEGEND = NO +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- +SEARCHENGINE = NO diff --git a/doc/salome/tui/images/application.jpg b/doc/salome/tui/images/application.jpg new file mode 100755 index 00000000..a6979ab9 Binary files /dev/null and b/doc/salome/tui/images/application.jpg differ diff --git a/doc/salome/tui/images/logocorp.gif b/doc/salome/tui/images/logocorp.gif new file mode 100755 index 00000000..7697e083 Binary files /dev/null and b/doc/salome/tui/images/logocorp.gif differ diff --git a/doc/salome/tui/images/occ.gif b/doc/salome/tui/images/occ.gif new file mode 100755 index 00000000..ce017c8a Binary files /dev/null and b/doc/salome/tui/images/occ.gif differ diff --git a/doc/salome/tui/static/doxygen.css b/doc/salome/tui/static/doxygen.css new file mode 100755 index 00000000..88e613d2 --- /dev/null +++ b/doc/salome/tui/static/doxygen.css @@ -0,0 +1,170 @@ +H1 { + text-align: center; +} + +CAPTION { + font-weight: bold +} + +/* Link in the top navbar */ +A.qindex {} + +A.qindexRef {} + +/* Link to any cross-referenced Doxygen element */ +A.el { + text-decoration: none; + font-weight: bold +} + +A.elRef { + font-weight: bold +} + +/* Link to any cross-referenced Doxygen element inside a code section + (ex: header) +*/ +A.code { + text-decoration: none; + font-weight: normal; + color: #4444ee +} + +A.codeRef { + font-weight: normal; + color: #4444ee +} + +A:hover { + text-decoration: none; + background-color: lightblue +} + +DL.el { + margin-left: -1cm +} + +/* A code fragment (ex: header) */ +DIV.fragment { + width: 100%; + border: none; + background-color: #CCCCCC +} + +/* In the alpha list (coumpound index), style of an alphabetical index letter */ +DIV.ah { + background-color: #CCCCCC; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px +} + +/* Method name (+ type) */ +TD.md { + background-color: lightblue; + font-weight: bold; +} + +/* Method parameter (some of them) */ +TD.mdname1 { + background-color: lightblue; + font-weight: bold; color: #602020; +} + +/* Method parameter (some of them) */ +TD.mdname { + background-color: lightblue; + font-weight: bold; + color: #602020; + width: 600px; +} + +/* Separator between methods group (usually empty, seems not supported by IE) */ +DIV.groupHeader { + margin-left: 16px; + margin-top: 12px; + margin-bottom: 6px; + font-weight: bold +} + +DIV.groupText { + margin-left: 16px; + font-style: italic; + font-size: smaller +} + +BODY { + background: #FFFFFF; +} + +/*div.div-page { + background-color: #FFFFFF; + margin-left: 1em; + margin-right: 1em; + margin-top: 1em; + margin-bottom: 0.1em; + + padding-left: 1em; + padding-right: 1em; + padding-top: 0.5em; + padding-bottom: 0.5em; + + border: 2px solid #0D299A; + border-width: 2px; + border-color: #0D299A; +}*/ + +div.tabs { + text-align: justify; + margin-left : 2px; + margin-right : 2px; + margin-top : 2px; + margin-bottom : 2px + font-weight: bold; + color: #FFFFFF; +} + +DIV.div-footer { + margin-left: 1em; + margin-right: 1em; + margin-bottom: 0.2em; + text-align: right; + font-size: 9pt; +} + +/* In File List, Coumpound List, etc, 1st column of the index */ +TD.indexkey { + background-color: #CCCCCC; + font-weight: bold; + padding-right : 10px; + padding-top : 2px; + padding-left : 10px; + padding-bottom : 2px; + margin-left : 0px; + margin-right : 0px; + margin-top : 2px; + margin-bottom : 2px +} + +/* In File List, Coumpound List, etc, 2nd column of the index */ +TD.indexvalue { + background-color: #CCCCCC; + font-style: italic; + padding-right : 10px; + padding-top : 2px; + padding-left : 10px; + padding-bottom : 2px; + margin-left : 0px; + margin-right : 0px; + margin-top : 2px; + margin-bottom : 2px +} + +span.keyword { color: #008000 } +span.keywordtype { color: #604020 } +span.keywordflow { color: #e08000 } +span.comment { color: #800000 } +span.preprocessor { color: #806020 } +span.stringliteral { color: #002080 } +span.charliteral { color: #008080 } diff --git a/doc/salome/tui/static/footer.html b/doc/salome/tui/static/footer.html new file mode 100755 index 00000000..cb55f397 --- /dev/null +++ b/doc/salome/tui/static/footer.html @@ -0,0 +1,5 @@ + +
+ + diff --git a/doc/salome/tui/static/myheader.html b/doc/salome/tui/static/myheader.html new file mode 100755 index 00000000..d2efb75f --- /dev/null +++ b/doc/salome/tui/static/myheader.html @@ -0,0 +1,13 @@ + + + + + + Main Page + + + + +  + + diff --git a/idl/Makefile.am b/idl/Makefile.am index 538f127b..cddec231 100644 --- a/idl/Makefile.am +++ b/idl/Makefile.am @@ -26,25 +26,23 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -BASEIDL_FILES= VISU_Gen.idl - -EXTRA_DIST+= $(BASEIDL_FILES) +BASEIDL_FILES = VISU_Gen.idl # This variable defines the files to be installed -salomeidl_DATA = $(BASEIDL_FILES) +dist_salomeidl_DATA = $(BASEIDL_FILES) # VISU idl common library lib_LTLIBRARIES = libSalomeIDLVISU.la # Sources built from idl files -nodist_libSalomeIDLVISU_la_SOURCES= VISU_GenSK.cc +nodist_libSalomeIDLVISU_la_SOURCES = VISU_GenSK.cc # header files must be exported: other modules have to use this library -nodist_salomeinclude_HEADERS= $(BASEIDL_FILES:%.idl=%.hh) +nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh) -libSalomeIDLVISU_la_CPPFLAGS =\ - -I$(top_builddir)/salome_adm/unix \ - -I$(top_builddir)/idl \ +libSalomeIDLVISU_la_CPPFLAGS = \ + -I$(top_builddir)/salome_adm/unix \ + -I$(top_builddir)/idl \ @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @KERNEL_CXXFLAGS@ @MED_CXXFLAGS@ libSalomeIDLVISU_la_LDFLAGS = -no-undefined -version-info=0:0:0 libSalomeIDLVISU_la_LIBADD = @CORBA_LIBS@ $(MED_LDFLAGS) -lSalomeIDLMED @@ -64,14 +62,14 @@ SUFFIXES = .idl .hh SK.cc $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $< install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%) - $(INSTALL) -d $(pkgpythondir) + $(INSTALL) -d $(DESTDIR)$(salomepythondir) ls $^ | while read file; do \ - $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(pkgpythondir) $$file ; \ + $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \ done # uninstall-local removes too much, but it works in distcheck uninstall-local: - rm -rf $(pkgpythondir)/* + rm -rf $(DESTDIR)$(salomepythondir)/* mostlyclean-local: clean-idls diff --git a/resources/Makefile.am b/resources/Makefile.am index 148851d3..ba4ed43d 100644 --- a/resources/Makefile.am +++ b/resources/Makefile.am @@ -27,7 +27,7 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am # =============================================================== # -dist_salomeres_DATA= \ +dist_salomeres_DATA = \ ModuleVisu.png \ SalomeApp.xml \ sprite_alpha.bmp \ @@ -110,7 +110,8 @@ Visu_slider_previous.png \ Visu_slider_play.png \ Visu_slider_pause.png \ Visu_slider_next.png \ -Visu_slider_last.png +Visu_slider_last.png \ +Visu_holo_render.png -EXTRA_DIST+= VISUCatalog.xml.in -nodist_salomeres_DATA=VISUCatalog.xml +# VSR: little trick to avoid putting if GEOMCatalog.xml to the distribution archive +nodist_salomeres_SCRIPTS = VISUCatalog.xml diff --git a/src/CONVERTOR/Makefile.am b/src/CONVERTOR/Makefile.am index 3953664f..b6ddf017 100644 --- a/src/CONVERTOR/Makefile.am +++ b/src/CONVERTOR/Makefile.am @@ -41,6 +41,7 @@ salomeinclude_HEADERS= \ VISU_Convertor_impl.hxx \ VISU_ConvertorUtils.hxx \ VISU_MergeFilter.hxx \ + VISU_MergeFilterUtilities.hxx \ VISU_AppendFilter.hxx \ VISU_AppendPolyData.hxx \ VISU_AppendFilterUtilities.hxx \ @@ -48,6 +49,7 @@ salomeinclude_HEADERS= \ VISU_UsedPointsFilter.hxx \ VISU_CommonCellsFilter.hxx \ VISUConvertor.hxx \ + VISU_MedConvertor.hxx \ VISU_GaussMergeFilter.hxx \ VISU_TableReader.hxx diff --git a/src/ENGINE/Makefile.am b/src/ENGINE/Makefile.am index 452ba6fe..52f9ad77 100644 --- a/src/ENGINE/Makefile.am +++ b/src/ENGINE/Makefile.am @@ -25,6 +25,9 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am lib_LTLIBRARIES= libVISUEngine.la + +salomeinclude_HEADERS= VISU_Engine_i.hh + dist_libVISUEngine_la_SOURCES= VISU_Engine_i.cc libVISUEngine_la_CPPFLAGS= $(KERNEL_CXXFLAGS) $(MED_CXXFLAGS) $(CORBA_CXXFLAGS) $(CORBA_INCLUDES) \ diff --git a/src/OBJECT/Makefile.am b/src/OBJECT/Makefile.am index ff0a1471..7b735801 100644 --- a/src/OBJECT/Makefile.am +++ b/src/OBJECT/Makefile.am @@ -33,6 +33,7 @@ salomeinclude_HEADERS = \ VISU_ActorFactory.h \ VISU_GaussPtsSettings.h \ VISU_GaussPtsActorFactory.h \ + VISU_GaussPtsDeviceActor.h \ VISU_Event.h \ VISU_Actor.h \ VISU_DataSetActor.h \ diff --git a/src/VISUGUI/Makefile.am b/src/VISUGUI/Makefile.am index e3a86336..6a722920 100644 --- a/src/VISUGUI/Makefile.am +++ b/src/VISUGUI/Makefile.am @@ -30,12 +30,49 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am lib_LTLIBRARIES= libVISU.la -salomeinclude_HEADERS= VisuGUI_Tools.h - # .po files to transform in .qm nodist_salomeres_DATA= \ VISU_msg_en.qm VISU_images.qm +salomeinclude_HEADERS= \ + VisuGUI_Tools.h \ + VisuGUI_Prs3dTools.h \ + VisuGUI_ActionsDef.h \ + VisuGUI.h \ + VisuGUI_Module.h \ + VisuGUI_Selection.h \ + VisuGUI_Tools.h \ + VisuGUI_ViewTools.h \ + VisuGUI_PopupTools.h \ + VisuGUI_NameDlg.h \ + VisuGUI_FileDlg.h \ + VisuGUI_CursorDlg.h \ + VisuGUI_TimeAnimation.h \ + VisuGUI_EditContainerDlg.h \ + VisuGUI_ClippingDlg.h \ + VisuGUI_DialogRunner.h \ + VisuGUI_OffsetDlg.h \ + VisuGUI_Prs3dDlg.h \ + VisuGUI_ScalarBarDlg.h \ + VisuGUI_Plot3DDlg.h \ + VisuGUI_GaussPointsDlg.h \ + VisuGUI_DeformedShapeDlg.h \ + VisuGUI_IsoSurfacesDlg.h \ + VisuGUI_CutLinesDlg.h \ + VisuGUI_CutPlanesDlg.h \ + VisuGUI_StreamLinesDlg.h \ + VisuGUI_VectorsDlg.h \ + VisuGUI_Displayer.h \ + VisuGUI_DeformedShapeAndScalarMapDlg.h \ + VisuGUI_SetupPlot2dDlg.h \ + VisuGUI_BuildProgressDlg.h \ + VisuGUI_TransparencyDlg.h \ + VisuGUI_Timer.h \ + VisuGUI_Slider.h \ + VisuGUI_InputPane.h \ + VisuGUI_CacheDlg.h \ + VisuGUI_FieldFilter.h + dist_libVISU_la_SOURCES= \ VisuGUI.cxx \ VisuGUI_Factory.cxx \ diff --git a/src/VISU_I/Makefile.am b/src/VISU_I/Makefile.am index 0bc6b6ac..bb8bd237 100644 --- a/src/VISU_I/Makefile.am +++ b/src/VISU_I/Makefile.am @@ -34,16 +34,19 @@ salomeinclude_HEADERS = \ VISU_MultiResult_i.hh \ VISU_PrsObject_i.hh \ VISU_Table_i.hh \ + VISU_ResultUtils.hh \ VISU_PointMap3d_i.hh \ VISU_Prs3d_i.hh \ VISU_Mesh_i.hh \ VISU_ColoredPrs3d_i.hh \ + VISU_CorbaMedConvertor.hxx \ VISU_ScalarMap_i.hh \ VISU_IsoSurfaces_i.hh \ VISU_DeformedShape_i.hh \ VISU_Plot3D_i.hh \ VISU_CutPlanes_i.hh \ VISU_CutLines_i.hh \ + VISU_Prs3dUtils.hh \ VISU_Vectors_i.hh \ VISU_StreamLines_i.hh \ VISU_GaussPoints_i.hh \ @@ -51,6 +54,8 @@ salomeinclude_HEADERS = \ VISU_View_i.hh \ VISU_TimeAnimation.h \ VISU_DeformedShapeAndScalarMap_i.hh \ + VISU_ColoredPrs3dCache_i.hh \ + VISU_ColoredPrs3dHolder_i.hh \ VISU_ColoredPrs3dFactory.hh \ VISU_MonoColorPrs_i.hh \ VISU_Deformation_i.hh \ diff --git a/src/VISU_SWIG/Makefile.am b/src/VISU_SWIG/Makefile.am index d237a8dd..a37018e6 100644 --- a/src/VISU_SWIG/Makefile.am +++ b/src/VISU_SWIG/Makefile.am @@ -26,18 +26,22 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am -lib_LTLIBRARIES= libVISU_Swigcmodule.la -dist_libVISU_Swigcmodule_la_SOURCES= VISU_Gen_s.cc -nodist_libVISU_Swigcmodule_la_SOURCES= libVISU_Swig_wrap.cxx +SWIG_FLAGS = @SWIG_FLAGS@ -I$(srcdir) +SWIG_DEF = libVISU_Swig.i -SWIG_DEF = libVISU_Swig.i -SWIG_FLAGS= @SWIG_FLAGS@ -I$(srcdir) +salomeinclude_HEADERS = $(SWIG_DEF) VISU_Gen_s.hh + +# Libraries targets +lib_LTLIBRARIES = _libVISU_Swig.la +dist__libVISU_Swig_la_SOURCES = $(SWIG_DEF) VISU_Gen_s.hh VISU_Gen_s.cc +nodist__libVISU_Swig_la_SOURCES = libVISU_Swig_wrap.cxx libVISU_Swig.py: libVISU_Swig_wrap.cxx + libVISU_Swig_wrap.cxx: $(SWIG_DEF) $(SWIG) $(SWIG_FLAGS) -o $@ $< -libVISU_Swigcmodule_la_CPPFLAGS= \ +_libVISU_Swig_la_CPPFLAGS = \ -ftemplate-depth-32 \ $(PYTHON_INCLUDES) \ $(HDF5_INCLUDES) \ @@ -49,20 +53,20 @@ libVISU_Swigcmodule_la_CPPFLAGS= \ $(BOOST_CPPFLAGS) \ -I$(srcdir)/../CONVERTOR -I$(srcdir)/../PIPELINE -libVISU_Swigcmodule_la_LDFLAGS= $(PYTHON_LIBS) ../CONVERTOR/libVisuConvertor.la ../PIPELINE/libVisuPipeLine.la +_libVISU_Swig_la_LDFLAGS = -module +_libVISU_Swig_la_LIBADD = $(PYTHON_LIBS) ../CONVERTOR/libVisuConvertor.la ../PIPELINE/libVisuPipeLine.la -dist_salomescript_DATA= libVISU_Swig.py batchmode_visu.py batchmode_visu_table.py batchmode_visu_view3d.py \ +dist_salomescript_DATA = batchmode_visu.py batchmode_visu_table.py batchmode_visu_view3d.py \ visu_med.py visu_view3d.py visu.py visu_gui.py visu_prs_example.py \ visu_table.py visu_big_table.py visu_view.py visu_delete.py \ visu_swig_test.py visu_split_views.py \ visu_succcessive_animation.py visu_apply_properties.py visu_apply_properties_successive.py \ + batch_test_events.py batchmode_visu_view.py test_events.py visu_cache.py visu_pointmap3d.py \ VISU_Example_01.py VISU_Example_02.py VISU_Example_03.py VISU_Example_04.py \ VISU_Example_05.py VISU_Example_06.py VISU_Example_07.py -dist_sharedpkgpython_DATA= VISU_shared_modules.py -CLEANFILES= libVISU_Swig.py libVISU_Swig_wrap.cxx +nodist_salomescript_DATA = libVISU_Swig.py -install-exec-hook: $(libdir)/_libVISU_Swig.so +dist_sharedpkgpython_DATA = VISU_shared_modules.py -$(libdir)/_libVISU_Swig.so: - ( cd $(libdir); ln -sf libVISU_Swigcmodule.so _libVISU_Swig.so; ) +CLEANFILES = libVISU_Swig.py libVISU_Swig_wrap.cxx diff --git a/src/VVTK/Makefile.am b/src/VVTK/Makefile.am index c09b3d46..5c531a41 100755 --- a/src/VVTK/Makefile.am +++ b/src/VVTK/Makefile.am @@ -36,6 +36,7 @@ salomeinclude_HEADERS= \ VVTK_SegmentationCursorDlg.h \ VVTK_PrimitiveBox.h \ VVTK_SizeBox.h \ + VVTK_Renderer.h \ VVTK_ViewWindow.h \ VVTK_MainWindow.h \ VVTK_ImageWriter.h \