Implement 'make dist' and 'make distcheck' steps support
14
Makefile.am
@ -22,11 +22,23 @@
|
|||||||
# Author : Patrick GOLDBRONN (CEA)
|
# Author : Patrick GOLDBRONN (CEA)
|
||||||
# Date : 28/06/2001
|
# Date : 28/06/2001
|
||||||
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
||||||
# $Header$
|
|
||||||
#
|
#
|
||||||
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
|
if SMESH_ENABLE_GUI
|
||||||
|
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 \
|
||||||
|
-I ${GEOM_ROOT_DIR}/adm_local/unix/config_files
|
||||||
|
else !SMESH_ENABLE_GUI
|
||||||
|
ACLOCAL_AMFLAGS = -I adm_local/unix/config_files \
|
||||||
|
-I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
|
||||||
|
-I ${MED_ROOT_DIR}/adm_local/unix/config_files \
|
||||||
|
-I ${GEOM_ROOT_DIR}/adm_local/unix/config_files
|
||||||
|
endif
|
||||||
|
|
||||||
SUBDIRS = idl adm_local resources src doc bin
|
SUBDIRS = idl adm_local resources src doc bin
|
||||||
|
|
||||||
DIST_SUBDIRS = idl adm_local resources src doc bin
|
DIST_SUBDIRS = idl adm_local resources src doc bin
|
||||||
|
@ -16,4 +16,7 @@
|
|||||||
#
|
#
|
||||||
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
#
|
#
|
||||||
|
|
||||||
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
SUBDIRS = unix
|
SUBDIRS = unix
|
||||||
|
@ -16,8 +16,10 @@
|
|||||||
#
|
#
|
||||||
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
#
|
#
|
||||||
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
dist_admlocalm4_DATA = \
|
dist_admlocalm4_DATA = \
|
||||||
check_SMESH.m4 \
|
check_SMESH.m4 \
|
||||||
check_f77.m4
|
check_f77.m4 \
|
||||||
|
check_Platform.m4
|
||||||
|
@ -7,16 +7,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Standard directory for installation
|
# Standard directory for installation
|
||||||
salomeincludedir = $(includedir)/@PACKAGE@
|
salomeincludedir = $(includedir)/salome
|
||||||
libdir = $(prefix)/lib@LIB_LOCATION_SUFFIX@/@PACKAGE@
|
libdir = $(prefix)/lib@LIB_LOCATION_SUFFIX@/salome
|
||||||
bindir = $(prefix)/bin/@PACKAGE@
|
bindir = $(prefix)/bin/salome
|
||||||
salomescriptdir = $(bindir)
|
salomescriptdir = $(bindir)
|
||||||
|
salomepythondir = $(pythondir)/salome
|
||||||
|
salomepyexecdir = $(pyexecdir)/salome
|
||||||
|
|
||||||
# Directory for installing idl files
|
# Directory for installing idl files
|
||||||
salomeidldir = $(prefix)/idl/@PACKAGE@
|
salomeidldir = $(prefix)/idl/salome
|
||||||
|
|
||||||
# Directory for installing resource files
|
# Directory for installing resource files
|
||||||
salomeresdir = $(prefix)/share/@PACKAGE@/resources/@MODULE_NAME@
|
salomeresdir = $(prefix)/share/salome/resources/@MODULE_NAME@
|
||||||
|
|
||||||
# Directories for installing admin files
|
# Directories for installing admin files
|
||||||
admlocaldir = $(prefix)/adm_local
|
admlocaldir = $(prefix)/adm_local
|
||||||
@ -24,26 +26,39 @@ admlocalunixdir = $(admlocaldir)/unix
|
|||||||
admlocalm4dir = $(admlocaldir)/unix/config_files
|
admlocalm4dir = $(admlocaldir)/unix/config_files
|
||||||
|
|
||||||
# Shared modules installation directory
|
# Shared modules installation directory
|
||||||
sharedpkgpythondir = $(pkgpythondir)/shared_modules
|
sharedpkgpythondir = $(salomepythondir)/shared_modules
|
||||||
|
|
||||||
# Documentation directory
|
# Documentation directory
|
||||||
docdir = $(datadir)/doc/@PACKAGE@
|
docdir = $(datadir)/doc/salome
|
||||||
|
|
||||||
# common rules
|
# common rules
|
||||||
|
|
||||||
# moc-files generation
|
# meta object implementation files generation (moc)
|
||||||
%_moc.cxx: %.h
|
%_moc.cxx: %.h
|
||||||
$(MOC) $< -o $@
|
$(MOC) $< -o $@
|
||||||
|
|
||||||
# qm-files generation
|
# translation (*.qm) files generation (lrelease)
|
||||||
%.qm: %.ts
|
%.qm: %.ts
|
||||||
$(LRELEASE) $< -qm $@
|
$(LRELEASE) $< -qm $@
|
||||||
|
|
||||||
EXTRA_DIST=$(MOC_FILES:%_moc.cxx=%.h) $(nodist_salomeres_DATA:%.qm=%.po)
|
# 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:
|
mostlyclean-local:
|
||||||
rm -f @builddir@/*_moc.cxx
|
rm -f @builddir@/*_moc.cxx
|
||||||
rm -f @builddir@/*.qm
|
rm -f @builddir@/*.qm
|
||||||
|
rm -f @builddir@/ui_*.h
|
||||||
|
rm -f @builddir@/qrc_*.cxx
|
||||||
|
|
||||||
# tests
|
# tests
|
||||||
tests: unittest
|
tests: unittest
|
||||||
|
@ -18,19 +18,13 @@
|
|||||||
# -* Makefile *-
|
# -* Makefile *-
|
||||||
#
|
#
|
||||||
# Author : Guillaume Boulant (CSSI)
|
# Author : Guillaume Boulant (CSSI)
|
||||||
# Module : KERNEL
|
# Module : SMESH
|
||||||
# $Header$
|
|
||||||
#
|
#
|
||||||
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
#
|
# non-distributed files
|
||||||
# ===============================================================
|
|
||||||
# Files to be installed
|
|
||||||
# ===============================================================
|
|
||||||
#
|
|
||||||
|
|
||||||
# These files are data, module or lib files
|
|
||||||
nodist_salomescript_DATA = VERSION
|
nodist_salomescript_DATA = VERSION
|
||||||
|
|
||||||
EXTRA_DIST+= VERSION.in
|
# distributed files
|
||||||
|
dist_salomescript_SCRIPTS =
|
||||||
|
15
clean_configure
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
rm -rf autom4te.cache aclocal.m4 configure make_config
|
||||||
|
find . -name "*~" -print -exec rm {} \;
|
||||||
|
find . -name "*.pyc" -print -exec rm {} \;
|
||||||
|
#exit
|
||||||
|
# ==================== ON SORT AVANT
|
||||||
|
|
||||||
|
find bin -name Makefile.in | xargs rm -f
|
||||||
|
find doc -name Makefile.in | xargs rm -f
|
||||||
|
find idl -name Makefile.in | xargs rm -f
|
||||||
|
find resources -name Makefile.in | xargs rm -f
|
||||||
|
find salome_adm -name Makefile.in | xargs rm -f
|
||||||
|
find src -name Makefile.in | xargs rm -f
|
||||||
|
rm -f Makefile.in
|
40
configure.ac
@ -9,7 +9,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
AC_INIT([Salome2 Project SMESH module], [5.0.0], [webmaster.salome@opencascade.com], [salome])
|
AC_INIT([Salome2 Project SMESH module], [5.0.0], [webmaster.salome@opencascade.com], [SalomeSMESH])
|
||||||
AC_CONFIG_AUX_DIR(salome_adm/unix/config_files)
|
AC_CONFIG_AUX_DIR(salome_adm/unix/config_files)
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
AC_CANONICAL_TARGET
|
AC_CANONICAL_TARGET
|
||||||
@ -397,42 +397,16 @@ dnl AM_CONDITIONAL(ENABLE_OCCVIEWER, [test "$DISABLE_OCCVIEWER" = no])
|
|||||||
dnl AM_CONDITIONAL(ENABLE_VTKVIEWER, [test "$DISABLE_VTKVIEWER" = no])
|
dnl AM_CONDITIONAL(ENABLE_VTKVIEWER, [test "$DISABLE_VTKVIEWER" = no])
|
||||||
dnl AM_CONDITIONAL(ENABLE_SALOMEOBJECT, [test "$DISABLE_SALOMEOBJECT" = no])
|
dnl AM_CONDITIONAL(ENABLE_SALOMEOBJECT, [test "$DISABLE_SALOMEOBJECT" = no])
|
||||||
|
|
||||||
echo
|
|
||||||
echo ---------------------------------------------
|
|
||||||
echo copying resource files, shell scripts, and
|
|
||||||
echo xml files
|
|
||||||
echo ---------------------------------------------
|
|
||||||
echo
|
|
||||||
|
|
||||||
|
|
||||||
dnl copy shells and utilities contained in the bin directory
|
|
||||||
dnl excluding .in files (treated in AC-OUTPUT below) and CVS
|
|
||||||
dnl directory
|
|
||||||
|
|
||||||
mkdir -p bin/salome
|
|
||||||
cd bin/salome
|
|
||||||
|
|
||||||
for i in $ROOT_SRCDIR/bin/*
|
|
||||||
do
|
|
||||||
local_bin=`echo $i | sed -e "s,$ROOT_SRCDIR,.,"`
|
|
||||||
case "$local_bin" in
|
|
||||||
*.in | *~) ;;
|
|
||||||
./bin/CVS | ./bin/salome) ;;
|
|
||||||
*) $INSTALL $i . ; echo $local_bin ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
cd $ROOT_BUILDDIR
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo ---------------------------------------------
|
echo ---------------------------------------------
|
||||||
echo generating Makefiles and configure files
|
echo generating Makefiles and configure files
|
||||||
echo ---------------------------------------------
|
echo ---------------------------------------------
|
||||||
echo
|
echo
|
||||||
|
|
||||||
AC_OUTPUT_COMMANDS([ \
|
#AC_OUTPUT_COMMANDS([ \
|
||||||
chmod +x ./bin/*; \
|
# chmod +x ./bin/*; \
|
||||||
chmod +x ./bin/salome/*; \
|
# chmod +x ./bin/salome/*; \
|
||||||
])
|
#])
|
||||||
|
|
||||||
# This list is initiated using autoscan and must be updated manually
|
# This list is initiated using autoscan and must be updated manually
|
||||||
# when adding a new file <filename>.in to manage. When you execute
|
# when adding a new file <filename>.in to manage. When you execute
|
||||||
@ -449,11 +423,11 @@ AC_OUTPUT([ \
|
|||||||
./doc/Makefile \
|
./doc/Makefile \
|
||||||
./doc/salome/Makefile \
|
./doc/salome/Makefile \
|
||||||
./doc/salome/gui/Makefile \
|
./doc/salome/gui/Makefile \
|
||||||
|
./doc/salome/gui/SMESH/Makefile \
|
||||||
./doc/salome/gui/SMESH/doxyfile \
|
./doc/salome/gui/SMESH/doxyfile \
|
||||||
./doc/salome/gui/SMESH/doxyfile_py \
|
./doc/salome/gui/SMESH/doxyfile_py \
|
||||||
./doc/salome/tui/Makefile \
|
./doc/salome/tui/Makefile \
|
||||||
./doc/salome/tui/SMESH/doxyfile \
|
./doc/salome/tui/doxyfile \
|
||||||
./doc/salome/tui/SMESH/sources/static/tree.js \
|
|
||||||
./src/Makefile \
|
./src/Makefile \
|
||||||
./src/Controls/Makefile \
|
./src/Controls/Makefile \
|
||||||
./src/Driver/Makefile \
|
./src/Driver/Makefile \
|
||||||
|
@ -28,3 +28,11 @@
|
|||||||
# source path
|
# source path
|
||||||
|
|
||||||
SUBDIRS = salome
|
SUBDIRS = salome
|
||||||
|
|
||||||
|
usr_docs:
|
||||||
|
(cd salome && $(MAKE) $(AM_MAKEFLAGS) usr_docs)
|
||||||
|
|
||||||
|
docs: usr_docs
|
||||||
|
|
||||||
|
dev_docs:
|
||||||
|
(cd salome && $(MAKE) $(AM_MAKEFLAGS) dev_docs)
|
||||||
|
@ -23,49 +23,9 @@
|
|||||||
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
EXTRA_DIST+=SMESH
|
SUBDIRS = SMESH
|
||||||
|
|
||||||
doxygen=@DOXYGEN@
|
|
||||||
|
|
||||||
# Below command replaces "smeshDC" by "smesh" except cases
|
|
||||||
# "ssmeshDC", "1smeshDC" and "esmeshDC" (these sequences
|
|
||||||
# can be found in file names and must not be replaces):
|
|
||||||
#
|
|
||||||
# sed 's/\([^s1e]\)smeshDC\|^smeshDC/\1smesh/g' $${filen} > ./tmp;
|
|
||||||
#
|
|
||||||
usr_docs:
|
usr_docs:
|
||||||
cd ./SMESH; \
|
(cd SMESH && $(MAKE) $(AM_MAKEFLAGS) usr_docs)
|
||||||
echo "Processing smeshDC.py file: "; \
|
|
||||||
$(doxygen) ./doxyfile_py; \
|
|
||||||
cd ./smeshpy_doc; \
|
|
||||||
filesl=`find .`; \
|
|
||||||
for filen in $${filesl}; do \
|
|
||||||
sed 's/\([^s1e]\)smeshDC\|^smeshDC/\1smesh/g' $${filen} > ./tmp; \
|
|
||||||
sed 's/smesh:://g' ./tmp > ./tmp1; \
|
|
||||||
rm -f tmp; \
|
|
||||||
mv -f tmp1 $${filen}; \
|
|
||||||
done; \
|
|
||||||
cd ..; \
|
|
||||||
echo "Running doxygen in directory: "`pwd`; \
|
|
||||||
$(doxygen) ./doxyfile;
|
|
||||||
|
|
||||||
docs: usr_docs
|
docs: usr_docs
|
||||||
|
|
||||||
clean-local:
|
|
||||||
rm -fr `ls | grep -v "Makefile"`
|
|
||||||
rm -fr SMESH
|
|
||||||
|
|
||||||
install-data-local: usr_docs
|
|
||||||
mkdir -p $(docdir)/gui
|
|
||||||
cp -rf SMESH $(docdir)/gui
|
|
||||||
-find $(PWD) -name CVS -prune -exec rm -rf {} \;
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
rm -rf $(docdir)/gui/SMESH
|
|
||||||
|
|
||||||
docguidir=$(docdir)/gui/SMESH
|
|
||||||
|
|
||||||
nodist_docgui_DATA= SMESH/doxyfile
|
|
||||||
nodist_docgui_DATA+= SMESH/doxyfile_py
|
|
||||||
EXTRA_DIST+= SMESH/doxyfile.in
|
|
||||||
EXTRA_DIST+= SMESH/doxyfile_py.in
|
|
||||||
|
70
doc/salome/gui/SMESH/Makefile.am
Executable file
@ -0,0 +1,70 @@
|
|||||||
|
# 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.in
|
||||||
|
# Author : Vasily Rusyaev (Open Cascade NN)
|
||||||
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
||||||
|
# Module : doc
|
||||||
|
|
||||||
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
|
EXTRA_DIST += images input static
|
||||||
|
|
||||||
|
usr_docs: doxyfile_py doxyfile
|
||||||
|
echo "===========================================" ; \
|
||||||
|
echo "Generating Python interface documentation"; \
|
||||||
|
echo "===========================================" ; \
|
||||||
|
$(DOXYGEN) doxyfile_py ; \
|
||||||
|
echo "===========================================" ; \
|
||||||
|
echo "Replacing smeshDC by smesh" ; \
|
||||||
|
echo "===========================================" ; \
|
||||||
|
files=`find smeshpy_doc -type f` ; \
|
||||||
|
for filen in $${files} ; do \
|
||||||
|
sed -e "s/\<smeshDC\>/smesh/g" -e "s/smesh\.smesh/smesh/g" \
|
||||||
|
-e "s/smesh::smesh/smesh/g" $${filen} > $${filen}_ ; \
|
||||||
|
mv -f $${filen}_ $${filen} ; \
|
||||||
|
done ; \
|
||||||
|
echo "===========================================" ; \
|
||||||
|
echo "Generating GUI documentation" ; \
|
||||||
|
echo "===========================================" ; \
|
||||||
|
$(DOXYGEN) doxyfile ;
|
||||||
|
|
||||||
|
docs: usr_docs
|
||||||
|
|
||||||
|
clean-local:
|
||||||
|
@for filen in `find .` ; do \
|
||||||
|
case $${filen} in \
|
||||||
|
./Makefile | ./doxyfile | ./doxyfile_py ) ;; \
|
||||||
|
. | .. ) ;; \
|
||||||
|
*) echo "Removing $${filen}" ; rm -rf $${filen} ;; \
|
||||||
|
esac ; \
|
||||||
|
done ;
|
||||||
|
|
||||||
|
install-data-local: usr_docs
|
||||||
|
$(INSTALL) -d $(DESTDIR)$(docdir)/gui/SMESH
|
||||||
|
@for filen in `find .` ; do \
|
||||||
|
case $${filen} in \
|
||||||
|
./Makefile | ./doxyfile | ./doxyfile_py ) ;; \
|
||||||
|
./doxyfile.bak | ./doxyfile_py.bak ) ;; \
|
||||||
|
. | .. ) ;; \
|
||||||
|
*) echo "Installing $${filen}" ; cp -rp $${filen} $(DESTDIR)$(docdir)/gui/SMESH ;; \
|
||||||
|
esac ; \
|
||||||
|
done ;
|
||||||
|
|
||||||
|
uninstall-local:
|
||||||
|
rm -rf $(DESTDIR)$(docdir)/gui/SMESH
|
@ -2,7 +2,7 @@
|
|||||||
# Project related configuration options
|
# Project related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
PROJECT_NAME = "Mesh Module Reference Manual v.@VERSION@"
|
PROJECT_NAME = "Mesh Module Reference Manual v.@VERSION@"
|
||||||
OUTPUT_DIRECTORY = ./
|
OUTPUT_DIRECTORY = .
|
||||||
CREATE_SUBDIRS = NO
|
CREATE_SUBDIRS = NO
|
||||||
OUTPUT_LANGUAGE = English
|
OUTPUT_LANGUAGE = English
|
||||||
TAB_SIZE = 5
|
TAB_SIZE = 5
|
||||||
@ -18,13 +18,15 @@ WARNINGS = YES
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
INPUT = @srcdir@/input
|
INPUT = @srcdir@/input
|
||||||
FILE_PATTERNS = *.doc
|
FILE_PATTERNS = *.doc
|
||||||
|
EXCLUDE =
|
||||||
IMAGE_PATH = @srcdir@/images
|
IMAGE_PATH = @srcdir@/images
|
||||||
EXAMPLE_PATH = @top_srcdir@/src/SMESH_SWIG
|
EXAMPLE_PATH = @top_srcdir@/src/SMESH_SWIG
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
#HTML related options
|
#HTML related options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
GENERATE_HTML = YES
|
GENERATE_HTML = YES
|
||||||
HTML_OUTPUT = ./
|
HTML_OUTPUT = .
|
||||||
HTML_HEADER = @srcdir@/static/header.html
|
HTML_HEADER = @srcdir@/static/header.html
|
||||||
HTML_FOOTER = @srcdir@/static/footer.html
|
HTML_FOOTER = @srcdir@/static/footer.html
|
||||||
#HTML_STYLESHEET = @srcdir@/static/doxygen.css
|
#HTML_STYLESHEET = @srcdir@/static/doxygen.css
|
||||||
@ -46,4 +48,4 @@ GENERATE_RTF = NO
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
#External reference options
|
#External reference options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
TAGFILES = smeshpy_doc.tag=./smeshpy_doc
|
TAGFILES = smeshpy_doc.tag=smeshpy_doc
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Project related configuration options
|
# Project related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
PROJECT_NAME = "Mesh Module Reference Manual v.@VERSION@"
|
PROJECT_NAME = "Mesh Module Reference Manual v.@VERSION@"
|
||||||
OUTPUT_DIRECTORY = ./
|
OUTPUT_DIRECTORY = .
|
||||||
CREATE_SUBDIRS = NO
|
CREATE_SUBDIRS = NO
|
||||||
OUTPUT_LANGUAGE = English
|
OUTPUT_LANGUAGE = English
|
||||||
USE_WINDOWS_ENCODING = NO
|
USE_WINDOWS_ENCODING = NO
|
||||||
@ -87,7 +87,7 @@ EXAMPLE_PATH = @top_srcdir@/src/SMESH_SWIG
|
|||||||
#HTML related options
|
#HTML related options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
GENERATE_HTML = YES
|
GENERATE_HTML = YES
|
||||||
HTML_OUTPUT = ./smeshpy_doc
|
HTML_OUTPUT = smeshpy_doc
|
||||||
HTML_HEADER = @srcdir@/static/header.html
|
HTML_HEADER = @srcdir@/static/header.html
|
||||||
HTML_FOOTER = @srcdir@/static/footer.html
|
HTML_FOOTER = @srcdir@/static/footer.html
|
||||||
#HTML_STYLESHEET = @srcdir@/static/doxygen.css
|
#HTML_STYLESHEET = @srcdir@/static/doxygen.css
|
||||||
@ -108,24 +108,17 @@ GENERATE_RTF = NO
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Configuration options related to the dot tool
|
# Configuration options related to the dot tool
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
#CLASS_DIAGRAMS = YES
|
|
||||||
CLASS_DIAGRAMS = NO
|
CLASS_DIAGRAMS = NO
|
||||||
HIDE_UNDOC_RELATIONS = NO
|
HIDE_UNDOC_RELATIONS = NO
|
||||||
#HAVE_DOT = YES
|
|
||||||
HAVE_DOT = NO
|
HAVE_DOT = NO
|
||||||
#CLASS_GRAPH = YES
|
|
||||||
CLASS_GRAPH = NO
|
CLASS_GRAPH = NO
|
||||||
COLLABORATION_GRAPH = NO
|
COLLABORATION_GRAPH = NO
|
||||||
GROUP_GRAPHS = NO
|
GROUP_GRAPHS = NO
|
||||||
UML_LOOK = NO
|
UML_LOOK = NO
|
||||||
#TEMPLATE_RELATIONS = YES
|
|
||||||
#INCLUDE_GRAPH = YES
|
|
||||||
TEMPLATE_RELATIONS = NO
|
TEMPLATE_RELATIONS = NO
|
||||||
INCLUDE_GRAPH = NO
|
INCLUDE_GRAPH = NO
|
||||||
INCLUDED_BY_GRAPH = NO
|
INCLUDED_BY_GRAPH = NO
|
||||||
CALL_GRAPH = NO
|
CALL_GRAPH = NO
|
||||||
#GRAPHICAL_HIERARCHY = YES
|
|
||||||
#DIRECTORY_GRAPH = YES
|
|
||||||
GRAPHICAL_HIERARCHY = NO
|
GRAPHICAL_HIERARCHY = NO
|
||||||
DIRECTORY_GRAPH = NO
|
DIRECTORY_GRAPH = NO
|
||||||
DOT_IMAGE_FORMAT = jpg
|
DOT_IMAGE_FORMAT = jpg
|
||||||
|
@ -22,36 +22,28 @@
|
|||||||
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
EXTRA_DIST += SMESH
|
EXTRA_DIST += images static
|
||||||
|
|
||||||
dev_docs:
|
dist_doc_DATA = \
|
||||||
cp -fr $(srcdir)/SMESH ./INPUT; \
|
extra/AddNetgenInSalome2.pdf \
|
||||||
cp -f ./SMESH/doxyfile ./INPUT; \
|
extra/AddNetgenInSalome2.ps \
|
||||||
cd INPUT; \
|
extra/AddNetgenInSalome2.sxw \
|
||||||
sed 's|../../../share/salome|$(top_srcdir)|' ./doxyfile > ./doxyfile1; \
|
extra/PluginMeshers.html
|
||||||
sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \
|
|
||||||
mv -f doxyfile2 doxyfile1; \
|
EXTRA_DIST += extra/PluginMeshers.txt
|
||||||
echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \
|
|
||||||
if( test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \
|
dev_docs: doxyfile
|
||||||
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`; \
|
echo "Running doxygen in directory: "`pwd`; \
|
||||||
$(DOXYGEN) ./doxyfile; \
|
$(DOXYGEN) $<;
|
||||||
cd ../; \
|
|
||||||
cp -fr $(srcdir)/SMESH/sources/ SMESH ; \
|
|
||||||
rm -fr INPUT
|
|
||||||
|
|
||||||
doctuidir=$(docdir)/tui/SMESH
|
clean-local:
|
||||||
|
-rm -fr SMESH doxygen.bak
|
||||||
|
|
||||||
nodist_doctui_DATA= SMESH/doxyfile
|
install-data-local:
|
||||||
EXTRA_DIST+= SMESH/doxyfile.in
|
if test -d SMESH; then \
|
||||||
|
$(INSTALL) -d $(DESTDIR)$(docdir)/tui ; \
|
||||||
|
cp -rp SMESH $(DESTDIR)$(docdir)/tui ; \
|
||||||
|
fi;
|
||||||
|
|
||||||
|
uninstall-local:
|
||||||
|
rm -rf $(DESTDIR)$(docdir)/tui/SMESH
|
||||||
|
@ -1,186 +0,0 @@
|
|||||||
<HTML><b>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_LocalLength</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetLength ( in double length )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetLength ( length )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetLength ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetLength ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_NumberOfSegments</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetNumberOfSegments ( in long segmentsNumber )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetNumberOfSegments ( segmentsNumber )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetNumberOfSegments ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetNumberOfSegments ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetScaleFactor ( in double scaleFactor )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetScaleFactor ( scaleFactor )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetScaleFactor ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetScaleFactor ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Arithmetic1D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetLength ( in double length, in boolean isStartLength )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetLength ( length, isStartLength )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetLength ( in boolean isStartLength )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetLength ( isStartLength )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_MaxElementArea</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetMaxElementArea ( in double area )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetMaxElementArea ( area )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetMaxElementArea ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetMaxElementArea ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_LengthFromEdges</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetMode ( in long mode )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetMode ( mode )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetMode ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetMode ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_StartEndLength</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetLength ( in double length, in boolean isStartLength )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetLength ( length, isStartLength )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetLength ( in boolean isStartLength )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetLength ( isStartLength )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Deflection1D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetDeflection ( in double deflection )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetDeflection ( deflection )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetDeflection ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetDeflection ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_MaxElementVolume</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetMaxElementVolume ( in double volume )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetMaxElementVolume ( volume )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>double GetMaxElementVolume ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetMaxElementVolume ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_NotConformAllowed</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Propagation</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Regular_1D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_MEFISTO_2D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Quadrangle_2D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface StdMeshers_Hexa_3D</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
</b></HTML>
|
|
@ -1,58 +0,0 @@
|
|||||||
<HTML><b>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_Gen</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>FilterManager CreateFilterManager ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateFilterManager ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Pattern GetPattern ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetPattern ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void SetCurrentStudy ( in Study theStudy )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SetCurrentStudy ( theStudy )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Study GetCurrentStudy ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetCurrentStudy ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Hypothesis CreateHypothesis ( in string theHypName, in string theLibName )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateHypothesis ( theHypName, theLibName )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Mesh CreateMesh ( in GEOM_Object theObject )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateMesh ( theObject )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Mesh CreateMeshesFromUNV ( in string theFileName )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateMeshesFromUNV ( theFileName )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>mesh_array CreateMeshesFromMED ( in string theFileName, out DriverMED_ReadStatus theStatus )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>[ return_value, theStatus ] = CreateMeshesFromMED ( theFileName )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Mesh CreateMeshesFromSTL ( in string theFileName )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateMeshesFromSTL ( theFileName )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean Compute ( in SMESH_Mesh theMesh, in GEOM_Object theSubObject )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = Compute ( theMesh, theSubObject )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean IsReadyToCompute ( in SMESH_Mesh theMesh, in GEOM_Object theSubObject )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = IsReadyToCompute ( theMesh, theSubObject )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long_array GetSubShapesId ( in GEOM_Object theMainObject, in object_array theListOfSubObjects )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetSubShapesId ( theMainObject, theListOfSubObjects )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
</b></HTML>
|
|
@ -1,58 +0,0 @@
|
|||||||
<HTML><b>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_Hypothesis</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>string GetName ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetName ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>string GetLibName ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetLibName ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_Algo</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ListOfHypothesisName GetCompatibleHypothesis ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetCompatibleHypothesis ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_1D_Algo</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_2D_Algo</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_3D_Algo</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
</b></HTML>
|
|
@ -1,306 +0,0 @@
|
|||||||
<HTML><b>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_Mesh</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_subMesh GetSubMesh ( in GEOM_Object aSubObject, in string name )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetSubMesh ( aSubObject, name )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RemoveSubMesh ( in SMESH_subMesh aSubMesh )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RemoveSubMesh ( aSubMesh )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Group CreateGroup ( in ElementType elem_type, in string name )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateGroup ( elem_type, name )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Group CreateGroupFromGEOM ( in ElementType elem_type, in string name, in GEOM_Object theGEOMGroup )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CreateGroupFromGEOM ( elem_type, name, theGEOMGroup )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RemoveGroup ( in SMESH_Group aGroup )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RemoveGroup ( aGroup )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RemoveGroupWithContents ( in SMESH_Group aGroup )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RemoveGroupWithContents ( aGroup )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Group UnionGroups ( in SMESH_Group aGroup1, in SMESH_Group aGroup2, in string name )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = UnionGroups ( aGroup1, aGroup2, name )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Group IntersectGroups ( in SMESH_Group aGroup1, in SMESH_Group aGroup2, in string name )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = IntersectGroups ( aGroup1, aGroup2, name )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Group CutGroups ( in SMESH_Group aMainGroup, in SMESH_Group aToolGroup, in string name )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = CutGroups ( aMainGroup, aToolGroup, name )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Hypothesis_Status AddHypothesis ( in GEOM_Object aSubObject, in SMESH_Hypothesis anHyp )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = AddHypothesis ( aSubObject, anHyp )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Hypothesis_Status RemoveHypothesis ( in GEOM_Object aSubObject, in SMESH_Hypothesis anHyp )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = RemoveHypothesis ( aSubObject, anHyp )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ListOfHypothesis GetHypothesisList ( in GEOM_Object aSubObject )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetHypothesisList ( aSubObject )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>log_array GetLog ( in boolean clearAfterGet )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetLog ( clearAfterGet )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ClearLog ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ClearLog ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetStudyId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetStudyId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_MeshEditor GetMeshEditor ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetMeshEditor ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ExportDAT ( in string file )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ExportDAT ( file )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ExportMED ( in string file, in boolean auto_groups )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ExportMED ( file, auto_groups )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ExportUNV ( in string file )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ExportUNV ( file )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ExportSTL ( in string file, in boolean isascii )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ExportSTL ( file, isascii )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>MESH GetMEDMesh ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetMEDMesh ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbNodes ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbNodes ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbEdges ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbEdges ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbFaces ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbFaces ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbTriangles ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbTriangles ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbQuadrangles ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbQuadrangles ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbVolumes ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbVolumes ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbTetras ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbTetras ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbHexas ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbHexas ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbPyramids ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbPyramids ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbPrisms ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbPrisms ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long NbSubMesh ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = NbSubMesh ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>string Dump ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = Dump ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_subMesh</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetNumberOfElements ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetNumberOfElements ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetNumberOfNodes ( in boolean all )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetNumberOfNodes ( all )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long_array GetElementsId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetElementsId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long_array GetElementsByType ( in ElementType theType )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetElementsByType ( theType )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long_array GetNodesId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetNodesId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>SMESH_Mesh GetFather ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetFather ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>long GetId ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetId ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>FAMILY GetFamily ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = GetFamily ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
<table width="100%" BORDER>
|
|
||||||
<tr bgcolor="#FFFFCC">
|
|
||||||
<td colspan="11"><font size="+3"><b><div align="center"><i>interface SMESH_MeshEditor</i></div></b></font></td>
|
|
||||||
</tr>
|
|
||||||
<td width="50%" bgcolor= "lightgreen" ><font size="+2"><div align="center"><b><i>IDL file</i></b></div></font></td>
|
|
||||||
<td width="50%" bgcolor= "lightgreen"><font size="+2"><div align="center"><b><i>Python</i></b></div></font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean RemoveElements ( in long_array IDsOfElements )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = RemoveElements ( IDsOfElements )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean RemoveNodes ( in long_array IDsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = RemoveNodes ( IDsOfNodes )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean AddNode ( in double x, in double y, in double z )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = AddNode ( x, y, z )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean AddEdge ( in long_array IDsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = AddEdge ( IDsOfNodes )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean AddFace ( in long_array IDsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = AddFace ( IDsOfNodes )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean AddVolume ( in long_array IDsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = AddVolume ( IDsOfNodes )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean MoveNode ( in long NodeID, in double x, in double y, in double z )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = MoveNode ( NodeID, x, y, z )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean InverseDiag ( in long NodeID1, in long NodeID2 )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = InverseDiag ( NodeID1, NodeID2 )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean DeleteDiag ( in long NodeID1, in long NodeID2 )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = DeleteDiag ( NodeID1, NodeID2 )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean Reorient ( in long_array IDsOfElements )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = Reorient ( IDsOfElements )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean TriToQuad ( in long_array IDsOfElements, in NumericalFunctor Criterion, in double MaxAngle )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = TriToQuad ( IDsOfElements, Criterion, MaxAngle )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean QuadToTri ( in long_array IDsOfElements, in NumericalFunctor Criterion )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = QuadToTri ( IDsOfElements, Criterion )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean SplitQuad ( in long_array IDsOfElements, in boolean Diag13 )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = SplitQuad ( IDsOfElements, Diag13 )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean Smooth ( in long_array IDsOfElements, in long_array IDsOfFixedNodes, in long MaxNbOfIterations, in double MaxAspectRatio, in Smooth_Method Method )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = Smooth ( IDsOfElements, IDsOfFixedNodes, MaxNbOfIterations, MaxAspectRatio, Method )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RenumberNodes ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RenumberNodes ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RenumberElements ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RenumberElements ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void RotationSweep ( in long_array IDsOfElements, in AxisStruct Axix, in double AngleInRadians, in long NbOfSteps, in double Tolerance )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>RotationSweep ( IDsOfElements, Axix, AngleInRadians, NbOfSteps, Tolerance )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void ExtrusionSweep ( in long_array IDsOfElements, in DirStruct StepVector, in long NbOfSteps )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>ExtrusionSweep ( IDsOfElements, StepVector, NbOfSteps )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void Mirror ( in long_array IDsOfElements, in AxisStruct Mirror, in MirrorType theMirrorType, in boolean Copy )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Mirror ( IDsOfElements, Mirror, theMirrorType, Copy )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void Translate ( in long_array IDsOfElements, in DirStruct Vector, in boolean Copy )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Translate ( IDsOfElements, Vector, Copy )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void Rotate ( in long_array IDsOfElements, in AxisStruct Axis, in double AngleInRadians, in boolean Copy )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>Rotate ( IDsOfElements, Axis, AngleInRadians, Copy )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void FindCoincidentNodes ( in double Tolerance, out array_of_long_array GroupsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>GroupsOfNodes = FindCoincidentNodes ( Tolerance )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void MergeNodes ( in array_of_long_array GroupsOfNodes )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>MergeNodes ( GroupsOfNodes )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>void MergeEqualElements ( )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>MergeEqualElements ( )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean SewFreeBorders ( in long FirstNodeID1, in long SecondNodeID1, in long LastNodeID1, in long FirstNodeID2, in long SecondNodeID2, in long LastNodeID2 )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = SewFreeBorders ( FirstNodeID1, SecondNodeID1, LastNodeID1, FirstNodeID2, SecondNodeID2, LastNodeID2 )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean SewConformFreeBorders ( in long FirstNodeID1, in long SecondNodeID1, in long LastNodeID1, in long FirstNodeID2, in long SecondNodeID2 )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = SewConformFreeBorders ( FirstNodeID1, SecondNodeID1, LastNodeID1, FirstNodeID2, SecondNodeID2 )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean SewBorderToSide ( in long FirstNodeIDOnFreeBorder, in long SecondNodeIDOnFreeBorder, in long LastNodeIDOnFreeBorder, in long FirstNodeIDOnSide, in long LastNodeIDOnSide )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = SewBorderToSide ( FirstNodeIDOnFreeBorder, SecondNodeIDOnFreeBorder, LastNodeIDOnFreeBorder, FirstNodeIDOnSide, LastNodeIDOnSide )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>boolean SewSideElements ( in long_array IDsOfSide1Elements, in long_array IDsOfSide2Elements, in long NodeID1OfSide1ToMerge, in long NodeID1OfSide2ToMerge, in long NodeID2OfSide1ToMerge, in long NodeID2OfSide2ToMerge )</b></div></td>
|
|
||||||
<td bgcolor= "lightgreen"><div align="center"><b>return_value = SewSideElements ( IDsOfSide1Elements, IDsOfSide2Elements, NodeID1OfSide1ToMerge, NodeID1OfSide2ToMerge, NodeID2OfSide1ToMerge, NodeID2OfSide2ToMerge )</b></div></td>
|
|
||||||
</tr>
|
|
||||||
</table><br>
|
|
||||||
</b></HTML>
|
|
@ -1,242 +0,0 @@
|
|||||||
# Doxyfile 1.4.6
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
|
||||||
# Project related configuration options
|
|
||||||
#---------------------------------------------------------------------------
|
|
||||||
PROJECT_NAME = "SALOME - SMESH - 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 \
|
|
||||||
../../../build/salome/bin
|
|
||||||
FILE_PATTERNS = *.hxx *.cxx *.h *.c *.hh *.cc *.idl 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 = SMESH
|
|
||||||
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
|
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 17 KiB |
@ -1,24 +0,0 @@
|
|||||||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
||||||
<meta name="GENERATOR" content="Mozilla/4.73 [en] (WinNT; I) [Netscape]">
|
|
||||||
<title>Main Page</title>
|
|
||||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<center><table WIDTH="96%" >
|
|
||||||
<tr>
|
|
||||||
<td><a href="http://www.opencascade.com"><img src="../sources/logocorp.gif" BORDER=0 height=46 width=122></a></td>
|
|
||||||
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<div align=right><a href="http://www.opencascade.org/SALOME/"><img src="../sources/application.gif" BORDER=0 height=46 width=108></a></div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table></center>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 14 KiB |
@ -1,50 +0,0 @@
|
|||||||
<!DOCTYPE doctype PUBLIC "-//w3c//dtd html 4.0 transitional//en">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<meta http-equiv="Content-Type"
|
|
||||||
content="text/html; charset=iso-8859-1">
|
|
||||||
|
|
||||||
<meta name="GENERATOR"
|
|
||||||
content="Mozilla/4.73 [en] (WinNT; I) [Netscape]">
|
|
||||||
<title>Main Page</title>
|
|
||||||
|
|
||||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<center>
|
|
||||||
<table width="96%">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td><a href="http://www.opencascade.com"><img
|
|
||||||
src="sources/logocorp.gif" border="0" height="46" width="122">
|
|
||||||
</a></td>
|
|
||||||
<td>
|
|
||||||
<div align="right"><a href="http://www.opencascade.org/SALOME/"><img
|
|
||||||
src="sources/application.gif" border="0" height="46" width="108">
|
|
||||||
</a></div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</center>
|
|
||||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
|
||||||
<ul>
|
|
||||||
<li><b>SALOME SMESH module</b>
|
|
||||||
<ul>
|
|
||||||
<li><a href="HTML/SMESH_Gen.html">Mapping of SMESH_Gen functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_BasicHypothesis.html">Mapping of SMESH_BasicHypothesis functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Hypothesis.html">Mapping of SMESH_Hypothesis functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Mesh.html">Mapping of SMESH_Mesh functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Filter.html">Mapping of SMESH_Filter functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Gen.html">Mapping of SMESH_Gen functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Group.html">Mapping of SMESH_Group functions</a></li>
|
|
||||||
<li><a href="HTML/SMESH_Pattern.html">Mapping of SMESH_Pattern functions</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<br>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,29 +0,0 @@
|
|||||||
foldersTree = gFld("<b>SALOME v.@VERSION@ </b>", "", "")
|
|
||||||
insDoc(foldersTree, gLnk("Main Page", "", "main.html"))
|
|
||||||
|
|
||||||
aux1 = insFld(foldersTree, gFld("TUI Reference Guide", ""))
|
|
||||||
aux2 = insFld(aux1, gFld("Modules", ""))
|
|
||||||
aux3 = insFld(aux2, gFld("SALOME SMESH module", ""))
|
|
||||||
/*! insDoc(aux3, gLnk("Overview", "", "overview_SMESH.html"))*/
|
|
||||||
aux4 = insFld(aux3, gFld("Packages", ""))
|
|
||||||
insDoc(aux4, gLnk("SMESH", "", "namespaceSMESH.html"))
|
|
||||||
/*! insDoc(aux3, gLnk("Examples", "", "examples_SMESH.html"))
|
|
||||||
*/
|
|
||||||
|
|
||||||
insDoc(aux1, gLnk("Data Structures", "", "annotated.html"))
|
|
||||||
insDoc(aux1, gLnk("Class Hierarchy", "", "hierarchy.html"))
|
|
||||||
insDoc(aux1, gLnk("Class methods list", "", "functions.html"))
|
|
||||||
insDoc(aux1, gLnk("Namespace Members", "", "namespacemembers.html"))
|
|
||||||
insDoc(aux1, gLnk("File List", "", "files.html"))
|
|
||||||
|
|
||||||
aux1 = insFld(foldersTree, gFld("IDL/Python mapping", ""))
|
|
||||||
insDoc(aux1, gLnk("Mapping of SMESH IDL definitions to Python language", "", "page2.html"))
|
|
||||||
|
|
||||||
aux1 = insFld(foldersTree, gFld("Python Commands", "", "meshpy_doc/main.html"))
|
|
||||||
insDoc(aux1, gLnk("Package List", "", "meshpy_doc/namespaces.html"))
|
|
||||||
insDoc(aux1, gLnk("Data Structures", "", "meshpy_doc/annotated.html"))
|
|
||||||
insDoc(aux1, gLnk("Namespace Members", "", "meshpy_doc/namespacemembers.html"))
|
|
||||||
insDoc(aux1, gLnk("File List", "", "meshpy_doc/files.html"))
|
|
||||||
|
|
||||||
aux1 = insFld(foldersTree, gFld("Adding meshers in SMESH", ""))
|
|
||||||
insDoc(aux1, gLnk("Using Plugin mechanism in SMESH", "", "PluginMeshers.html"))
|
|
@ -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<folder.nChildren; i++)
|
|
||||||
folder.children[i].display()
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (folder.nodeImg)
|
|
||||||
if (folder.isLastNode)
|
|
||||||
folder.nodeImg.src = "ftv2plastnode.png"
|
|
||||||
else
|
|
||||||
folder.nodeImg.src = "ftv2pnode.png"
|
|
||||||
folder.iconImg.src = "ftv2folderclosed.png"
|
|
||||||
for (i=0; i<folder.nChildren; i++)
|
|
||||||
folder.children[i].hide()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function hideFolder()
|
|
||||||
{
|
|
||||||
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"
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setState(0)
|
|
||||||
}
|
|
||||||
|
|
||||||
function initializeFolder(level, lastNode, leftSide)
|
|
||||||
{
|
|
||||||
var j=0
|
|
||||||
var i=0
|
|
||||||
var numberOfFolders
|
|
||||||
var numberOfDocs
|
|
||||||
var nc
|
|
||||||
|
|
||||||
nc = this.nChildren
|
|
||||||
|
|
||||||
this.createIndex()
|
|
||||||
|
|
||||||
var auxEv = ""
|
|
||||||
|
|
||||||
if (browserVersion > 0)
|
|
||||||
auxEv = "<a href='javascript:clickOnNode("+this.id+")'>"
|
|
||||||
else
|
|
||||||
auxEv = "<a>"
|
|
||||||
|
|
||||||
if (level>0)
|
|
||||||
if (lastNode) //the last 'brother' in the children array
|
|
||||||
{
|
|
||||||
this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='ftv2mlastnode.png' width=16 height=22 border=0></a>")
|
|
||||||
// leftSide = leftSide + "<img src='ftv2blank.png' width=16 height=22>"
|
|
||||||
this.isLastNode = 1
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='ftv2mnode.png' width=16 height=22 border=0></a>")
|
|
||||||
leftSide = leftSide + "<img src='ftv2vertline.png' width=16 height=22>"
|
|
||||||
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("<layer id='folder" + this.id + "' top=" + doc.yPos + " visibility=hidden>")
|
|
||||||
}
|
|
||||||
if (browserVersion == 3)
|
|
||||||
{
|
|
||||||
doc.write("<div id='folder" + this.id + "' style='visibility:hide;'>")
|
|
||||||
}
|
|
||||||
|
|
||||||
doc.write("\n<table ")
|
|
||||||
if (browserVersion == 1)
|
|
||||||
doc.write(" id='folder" + this.id + "' style='position:block;' ")
|
|
||||||
doc.write(" border=0 cellspacing=0 cellpadding=0>")
|
|
||||||
doc.write("\n<tr><td>")
|
|
||||||
doc.write(leftSide)
|
|
||||||
this.outputLink()
|
|
||||||
doc.write("<img name='folderIcon" + this.id + "' ")
|
|
||||||
doc.write("src='" + this.iconSrc+"' border=0></a>")
|
|
||||||
doc.write("</td>\n<td valign=middle nowrap>")
|
|
||||||
if (USETEXTLINKS)
|
|
||||||
{
|
|
||||||
this.outputLink()
|
|
||||||
doc.write(this.desc + "</a>")
|
|
||||||
}
|
|
||||||
else
|
|
||||||
doc.write(this.desc)
|
|
||||||
|
|
||||||
/*!
|
|
||||||
if (this.tagName!="")
|
|
||||||
{
|
|
||||||
doc.write(" [external]")
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
doc.write("</td>")
|
|
||||||
doc.write("\n</table>\n")
|
|
||||||
|
|
||||||
if (browserVersion == 2) {
|
|
||||||
doc.write("</layer>")
|
|
||||||
}
|
|
||||||
if (browserVersion == 3) {
|
|
||||||
doc.write("</div>")
|
|
||||||
}
|
|
||||||
|
|
||||||
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("<a ")
|
|
||||||
if (this.tagName)
|
|
||||||
{
|
|
||||||
doc.write("doxygen='" + this.tagName + "' ");
|
|
||||||
}
|
|
||||||
doc.write("href='" + this.hreference + "' TARGET=\"basefrm\" ")
|
|
||||||
if (browserVersion > 0)
|
|
||||||
doc.write("onClick='javascript:clickOnFolder("+this.id+")'")
|
|
||||||
doc.write(">")
|
|
||||||
}
|
|
||||||
else
|
|
||||||
doc.write("<a>")
|
|
||||||
}
|
|
||||||
|
|
||||||
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 + "<img src='ftv2lastnode.png' width=16 height=22>")
|
|
||||||
leftSide = leftSide + "<img src='ftv2blank.png' width=16 height=22>"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.renderOb(leftSide + "<img src='ftv2node.png' width=16 height=22>")
|
|
||||||
leftSide = leftSide + "<img src='ftv2vertline.png' width=16 height=22>"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
this.renderOb("")
|
|
||||||
}
|
|
||||||
|
|
||||||
function drawItem(leftSide)
|
|
||||||
{
|
|
||||||
if (browserVersion == 2)
|
|
||||||
doc.write("<layer id='item" + this.id + "' top=" + doc.yPos + " visibility=hidden>")
|
|
||||||
if (browserVersion == 3)
|
|
||||||
doc.write("<div id='item" + this.id + "' style='display:block;'>")
|
|
||||||
|
|
||||||
doc.write("\n<table ")
|
|
||||||
if (browserVersion == 1)
|
|
||||||
doc.write(" id='item" + this.id + "' style='position:block;' ")
|
|
||||||
doc.write(" border=0 cellspacing=0 cellpadding=0>\n")
|
|
||||||
doc.write("<tr><td>")
|
|
||||||
doc.write(leftSide)
|
|
||||||
if (this.link!="")
|
|
||||||
{
|
|
||||||
doc.write("<a href=" + this.link + ">")
|
|
||||||
}
|
|
||||||
doc.write("<img id='itemIcon"+this.id+"' ")
|
|
||||||
doc.write("src='"+this.iconSrc+"' border=0>")
|
|
||||||
if (this.link!="")
|
|
||||||
{
|
|
||||||
doc.write("</a>")
|
|
||||||
}
|
|
||||||
doc.write("</td>\n<td valign=middle nowrap>")
|
|
||||||
if (USETEXTLINKS && this.link!="")
|
|
||||||
doc.write("<a href=" + this.link + ">" + this.desc + "</a>")
|
|
||||||
else
|
|
||||||
doc.write(this.desc)
|
|
||||||
/*!
|
|
||||||
if (this.tagName!="")
|
|
||||||
{
|
|
||||||
doc.write(" [external]");
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
doc.write("\n</table>\n")
|
|
||||||
|
|
||||||
if (browserVersion == 2)
|
|
||||||
doc.write("</layer>")
|
|
||||||
if (browserVersion == 3)
|
|
||||||
doc.write("</div>")
|
|
||||||
|
|
||||||
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("<layer top="+indexOfEntries[nEntries-1].navObj.top+"> </layer>")
|
|
||||||
|
|
||||||
// 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
|
|
@ -3,9 +3,9 @@
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Project related configuration options
|
# Project related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
PROJECT_NAME = "SALOME - SMESH - v.@VERSION@"
|
PROJECT_NAME = "Mesh Module Programming Guide v.@VERSION@"
|
||||||
PROJECT_NUMBER =
|
PROJECT_NUMBER =
|
||||||
OUTPUT_DIRECTORY = ../
|
OUTPUT_DIRECTORY = SMESH
|
||||||
CREATE_SUBDIRS = NO
|
CREATE_SUBDIRS = NO
|
||||||
OUTPUT_LANGUAGE = English
|
OUTPUT_LANGUAGE = English
|
||||||
USE_WINDOWS_ENCODING = NO
|
USE_WINDOWS_ENCODING = NO
|
||||||
@ -15,8 +15,7 @@ ABBREVIATE_BRIEF =
|
|||||||
ALWAYS_DETAILED_SEC = YES
|
ALWAYS_DETAILED_SEC = YES
|
||||||
INLINE_INHERITED_MEMB = YES
|
INLINE_INHERITED_MEMB = YES
|
||||||
FULL_PATH_NAMES = YES
|
FULL_PATH_NAMES = YES
|
||||||
STRIP_FROM_PATH = ../../../share/salome \
|
STRIP_FROM_PATH = @top_srcdir@ @top_builddir@
|
||||||
../../../build/salome
|
|
||||||
STRIP_FROM_INC_PATH =
|
STRIP_FROM_INC_PATH =
|
||||||
SHORT_NAMES = NO
|
SHORT_NAMES = NO
|
||||||
JAVADOC_AUTOBRIEF = YES
|
JAVADOC_AUTOBRIEF = YES
|
||||||
@ -28,7 +27,7 @@ TAB_SIZE = 5
|
|||||||
ALIASES =
|
ALIASES =
|
||||||
OPTIMIZE_OUTPUT_FOR_C = YES
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
||||||
OPTIMIZE_OUTPUT_JAVA = YES
|
OPTIMIZE_OUTPUT_JAVA = YES
|
||||||
BUILTIN_STL_SUPPORT = NO
|
BUILTIN_STL_SUPPORT = @DOXYGEN_SUPPORT_STL@
|
||||||
DISTRIBUTE_GROUP_DOC = NO
|
DISTRIBUTE_GROUP_DOC = NO
|
||||||
SUBGROUPING = YES
|
SUBGROUPING = YES
|
||||||
|
|
||||||
@ -71,14 +70,16 @@ WARN_IF_UNDOCUMENTED = YES
|
|||||||
WARN_IF_DOC_ERROR = YES
|
WARN_IF_DOC_ERROR = YES
|
||||||
WARN_NO_PARAMDOC = NO
|
WARN_NO_PARAMDOC = NO
|
||||||
WARN_FORMAT = "$file:$line: $text"
|
WARN_FORMAT = "$file:$line: $text"
|
||||||
WARN_LOGFILE = log.txt
|
WARN_LOGFILE =
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# configuration options related to the input files
|
# configuration options related to the input files
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
INPUT = ../../../share/salome/src \
|
INPUT = @top_srcdir@/src \
|
||||||
../../../share/salome/idl
|
@top_srcdir@/bin \
|
||||||
FILE_PATTERNS = *.hxx *.cxx *.h *.c *.hh *.cc *.idl python_extension_must_be_here
|
@top_srcdir@/idl \
|
||||||
|
@top_builddir@/bin
|
||||||
|
FILE_PATTERNS = *.idl *.hxx *.cxx *.h *.c *.hh *.cc @DOXYGEN_PYTHON_EXTENSION@
|
||||||
RECURSIVE = YES
|
RECURSIVE = YES
|
||||||
EXCLUDE =
|
EXCLUDE =
|
||||||
EXCLUDE_SYMLINKS = NO
|
EXCLUDE_SYMLINKS = NO
|
||||||
@ -86,7 +87,7 @@ EXCLUDE_PATTERNS =
|
|||||||
EXAMPLE_PATH =
|
EXAMPLE_PATH =
|
||||||
EXAMPLE_PATTERNS =
|
EXAMPLE_PATTERNS =
|
||||||
EXAMPLE_RECURSIVE = NO
|
EXAMPLE_RECURSIVE = NO
|
||||||
IMAGE_PATH = sources/
|
IMAGE_PATH = @srcdir@/images
|
||||||
INPUT_FILTER =
|
INPUT_FILTER =
|
||||||
FILTER_PATTERNS =
|
FILTER_PATTERNS =
|
||||||
FILTER_SOURCE_FILES = YES
|
FILTER_SOURCE_FILES = YES
|
||||||
@ -113,11 +114,11 @@ IGNORE_PREFIX =
|
|||||||
# configuration options related to the HTML output
|
# configuration options related to the HTML output
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
GENERATE_HTML = YES
|
GENERATE_HTML = YES
|
||||||
HTML_OUTPUT = SMESH
|
HTML_OUTPUT = .
|
||||||
HTML_FILE_EXTENSION = .html
|
HTML_FILE_EXTENSION = .html
|
||||||
HTML_HEADER = sources/myheader.html
|
HTML_HEADER = @srcdir@/static/myheader.html
|
||||||
HTML_FOOTER = sources/footer.html
|
HTML_FOOTER = @srcdir@/static/footer.html
|
||||||
HTML_STYLESHEET = sources/static/doxygen.css
|
HTML_STYLESHEET = @srcdir@/static/doxygen.css
|
||||||
HTML_ALIGN_MEMBERS = YES
|
HTML_ALIGN_MEMBERS = YES
|
||||||
GENERATE_HTMLHELP = NO
|
GENERATE_HTMLHELP = NO
|
||||||
CHM_FILE =
|
CHM_FILE =
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -36,10 +36,8 @@ BASEIDL_FILES = \
|
|||||||
SMESH_Pattern.idl \
|
SMESH_Pattern.idl \
|
||||||
SMESH_MeshEditor.idl
|
SMESH_MeshEditor.idl
|
||||||
|
|
||||||
EXTRA_DIST+= $(BASEIDL_FILES)
|
|
||||||
|
|
||||||
# This variable defines the files to be installed
|
# This variable defines the files to be installed
|
||||||
salomeidl_DATA = $(BASEIDL_FILES)
|
dist_salomeidl_DATA = $(BASEIDL_FILES)
|
||||||
|
|
||||||
# GUI idl common library
|
# GUI idl common library
|
||||||
lib_LTLIBRARIES = libSalomeIDLSMESH.la
|
lib_LTLIBRARIES = libSalomeIDLSMESH.la
|
||||||
@ -61,10 +59,8 @@ nodist_salomeinclude_HEADERS= $(BASEIDL_FILES:%.idl=%.hh)
|
|||||||
libSalomeIDLSMESH_la_CPPFLAGS = \
|
libSalomeIDLSMESH_la_CPPFLAGS = \
|
||||||
-I$(top_builddir)/salome_adm/unix \
|
-I$(top_builddir)/salome_adm/unix \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl \
|
||||||
$(CORBA_CXXFLAGS) \
|
$(CORBA_CXXFLAGS) $(CORBA_INCLUDES) \
|
||||||
$(CORBA_INCLUDES) \
|
$(KERNEL_CXXFLAGS) $(MED_CXXFLAGS) \
|
||||||
$(KERNEL_CXXFLAGS) \
|
|
||||||
$(MED_CXXFLAGS) \
|
|
||||||
$(GEOM_CXXFLAGS)
|
$(GEOM_CXXFLAGS)
|
||||||
libSalomeIDLSMESH_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
libSalomeIDLSMESH_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
||||||
libSalomeIDLSMESH_la_LIBADD = \
|
libSalomeIDLSMESH_la_LIBADD = \
|
||||||
@ -105,14 +101,14 @@ SUFFIXES = .idl .hh SK.cc
|
|||||||
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
|
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
|
||||||
|
|
||||||
install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
|
install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
|
||||||
$(INSTALL) -d $(pkgpythondir)
|
$(INSTALL) -d $(DESTDIR)$(salomepythondir)
|
||||||
ls $^ | while read file; do \
|
ls $^ | while read file; do \
|
||||||
$(OMNIORB_IDL) $(IDLPYFLAGS) -C$(pkgpythondir) $$file ; \
|
$(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# uninstall-local removes too much, but it works in distcheck
|
# uninstall-local removes too much, but it works in distcheck
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
rm -rf $(pkgpythondir)/*
|
rm -rf $(DESTDIR)$(salomepythondir)/*
|
||||||
|
|
||||||
mostlyclean-local:
|
mostlyclean-local:
|
||||||
-rm -f *.hh *.cc .depidl
|
-rm -f *.hh *.cc .depidl
|
||||||
|
@ -135,7 +135,6 @@ dist_salomeres_DATA = \
|
|||||||
SMESH_en.xml \
|
SMESH_en.xml \
|
||||||
SMESH.config \
|
SMESH.config \
|
||||||
StdMeshers.xml \
|
StdMeshers.xml \
|
||||||
SMESHCatalog.xml \
|
|
||||||
SalomeApp.xml \
|
SalomeApp.xml \
|
||||||
mesh_pattern.png \
|
mesh_pattern.png \
|
||||||
pattern_sample_2d.png \
|
pattern_sample_2d.png \
|
||||||
@ -166,4 +165,5 @@ dist_salomeres_DATA = \
|
|||||||
mesh_node_to_point.png \
|
mesh_node_to_point.png \
|
||||||
mesh_tree_mesh_partial.png
|
mesh_tree_mesh_partial.png
|
||||||
|
|
||||||
nodist_salomeres_DATA = SMESHCatalog.xml
|
# VSR: little trick to avoid putting if SMESHCatalog.xml to the distribution archive
|
||||||
|
nodist_salomeres_SCRIPTS = SMESHCatalog.xml
|
||||||
|
@ -39,6 +39,13 @@ salomeinclude_HEADERS = \
|
|||||||
DriverUNV_W_SMESHDS_Document.h \
|
DriverUNV_W_SMESHDS_Document.h \
|
||||||
SMESH_DriverUNV.hxx
|
SMESH_DriverUNV.hxx
|
||||||
|
|
||||||
|
# not-exported (internal) files
|
||||||
|
EXTRA_DIST += \
|
||||||
|
UNV2411_Structure.hxx \
|
||||||
|
UNV2412_Structure.hxx \
|
||||||
|
UNV2417_Structure.hxx \
|
||||||
|
UNV_Utilities.hxx
|
||||||
|
|
||||||
# Libraries targets
|
# Libraries targets
|
||||||
lib_LTLIBRARIES = libMeshDriverUNV.la
|
lib_LTLIBRARIES = libMeshDriverUNV.la
|
||||||
dist_libMeshDriverUNV_la_SOURCES = \
|
dist_libMeshDriverUNV_la_SOURCES = \
|
||||||
|
@ -52,3 +52,7 @@ if SMESH_ENABLE_GUI
|
|||||||
SMESH_SWIG_WITHIHM \
|
SMESH_SWIG_WITHIHM \
|
||||||
StdMeshersGUI
|
StdMeshersGUI
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
DIST_SUBDIRS = SMDS SMESHDS Controls Driver DriverMED DriverDAT DriverUNV DriverSTL SMESH \
|
||||||
|
SMESH_I SMESHClient SMESH_SWIG MEFISTO2 StdMeshers StdMeshers_I OBJECT \
|
||||||
|
SMESHFiltersSelection SMESHGUI SMESH_SWIG_WITHIHM StdMeshersGUI
|
||||||
|
@ -33,9 +33,12 @@ salomeinclude_HEADERS = \
|
|||||||
SMESH_Object.h \
|
SMESH_Object.h \
|
||||||
SMESH_ObjectDef.h \
|
SMESH_ObjectDef.h \
|
||||||
SMESH_ActorUtils.h \
|
SMESH_ActorUtils.h \
|
||||||
|
SMESH_ActorDef.h \
|
||||||
|
SMESH_DeviceActor.h \
|
||||||
|
SMESH_ExtractGeometry.h \
|
||||||
|
SMESH_ActorUtils.h \
|
||||||
SMESH_FaceOrientationFilter.h
|
SMESH_FaceOrientationFilter.h
|
||||||
|
|
||||||
|
|
||||||
# Libraries targets
|
# Libraries targets
|
||||||
|
|
||||||
lib_LTLIBRARIES = libSMESHObject.la
|
lib_LTLIBRARIES = libSMESHObject.la
|
||||||
|
@ -83,10 +83,10 @@ dist_libSMESHimpl_la_SOURCES = \
|
|||||||
# additionnal information to compile and link file
|
# additionnal information to compile and link file
|
||||||
libSMESHimpl_la_CPPFLAGS = \
|
libSMESHimpl_la_CPPFLAGS = \
|
||||||
$(KERNEL_CXXFLAGS) \
|
$(KERNEL_CXXFLAGS) \
|
||||||
|
$(CAS_CPPFLAGS) \
|
||||||
$(MED_CXXFLAGS) \
|
$(MED_CXXFLAGS) \
|
||||||
$(GEOM_CXX_FLAGS) \
|
$(GEOM_CXX_FLAGS) \
|
||||||
$(BOOST_CPPFLAGS) \
|
$(BOOST_CPPFLAGS) \
|
||||||
$(CAS_CPPFLAGS) \
|
|
||||||
@HDF5_INCLUDES@ \
|
@HDF5_INCLUDES@ \
|
||||||
-I$(srcdir)/../Controls \
|
-I$(srcdir)/../Controls \
|
||||||
-I$(srcdir)/../Driver \
|
-I$(srcdir)/../Driver \
|
||||||
|
@ -34,6 +34,62 @@ salomeinclude_HEADERS = \
|
|||||||
SMESHGUI_SpinBox.h \
|
SMESHGUI_SpinBox.h \
|
||||||
SMESHGUI_Selection.h \
|
SMESHGUI_Selection.h \
|
||||||
SMESHGUI_VTKUtils.h \
|
SMESHGUI_VTKUtils.h \
|
||||||
|
SMESHGUI_Displayer.h \
|
||||||
|
SMESHGUI_GEOMGenUtils.h \
|
||||||
|
SMESHGUI_MeshUtils.h \
|
||||||
|
SMESHGUI_FilterUtils.h \
|
||||||
|
SMESHGUI_PatternUtils.h \
|
||||||
|
SMESHGUI_GroupUtils.h \
|
||||||
|
SMESHGUI_PatternWidget.h \
|
||||||
|
SMESHGUI_CreatePatternDlg.h \
|
||||||
|
SMESHGUI_MeshPatternDlg.h \
|
||||||
|
SMESHGUI_NodesDlg.h \
|
||||||
|
SMESHGUI_TransparencyDlg.h \
|
||||||
|
SMESHGUI_ClippingDlg.h \
|
||||||
|
SMESHGUI_GroupDlg.h \
|
||||||
|
SMESHGUI_RemoveNodesDlg.h \
|
||||||
|
SMESHGUI_RemoveElementsDlg.h \
|
||||||
|
SMESHGUI_MeshInfosDlg.h \
|
||||||
|
SMESHGUI_StandardMeshInfosDlg.h \
|
||||||
|
SMESHGUI_WhatIsDlg.h \
|
||||||
|
SMESHGUI_Preferences_ColorDlg.h \
|
||||||
|
SMESHGUI_Preferences_ScalarBarDlg.h \
|
||||||
|
SMESHGUI_MoveNodesDlg.h \
|
||||||
|
SMESHGUI_AddMeshElementDlg.h \
|
||||||
|
SMESHGUI_XmlHandler.h \
|
||||||
|
SMESHGUI_Filter.h \
|
||||||
|
SMESHGUI_FilterDlg.h \
|
||||||
|
SMESHGUI_FilterLibraryDlg.h \
|
||||||
|
SMESHGUI_SingleEditDlg.h \
|
||||||
|
SMESHGUI_MultiEditDlg.h \
|
||||||
|
SMESHGUI_DeleteGroupDlg.h \
|
||||||
|
SMESHGUI_GroupOpDlg.h \
|
||||||
|
SMESHGUI_SmoothingDlg.h \
|
||||||
|
SMESHGUI_RenumberingDlg.h \
|
||||||
|
SMESHGUI_ExtrusionDlg.h \
|
||||||
|
SMESHGUI_ExtrusionAlongPathDlg.h \
|
||||||
|
SMESHGUI_RevolutionDlg.h \
|
||||||
|
SMESHGUI_RotationDlg.h \
|
||||||
|
SMESHGUI_TranslationDlg.h \
|
||||||
|
SMESHGUI_SymmetryDlg.h \
|
||||||
|
SMESHGUI_SewingDlg.h \
|
||||||
|
SMESHGUI_EditMeshDlg.h \
|
||||||
|
SMESHGUI_MeshUtils.h \
|
||||||
|
SMESHGUI_CreatePolyhedralVolumeDlg.h \
|
||||||
|
SMESHGUI_Operation.h \
|
||||||
|
SMESHGUI_SelectionOp.h \
|
||||||
|
SMESHGUI_Dialog.h \
|
||||||
|
SMESHGUI_MeshDlg.h \
|
||||||
|
SMESHGUI_MeshOp.h \
|
||||||
|
SMESHGUI_ShapeByMeshDlg.h \
|
||||||
|
SMESHGUI_AddQuadraticElementDlg.h \
|
||||||
|
SMESHGUI_ConvToQuadDlg.h \
|
||||||
|
SMESHGUI_ConvToQuadOp.h \
|
||||||
|
SMESHGUI_BuildCompoundDlg.h \
|
||||||
|
SMESHGUI_ComputeDlg.h \
|
||||||
|
SMESHGUI_MakeNodeAtPointDlg.h \
|
||||||
|
SMESHGUI_MeshEditPreview.h \
|
||||||
|
SMESHGUI_IdValidator.h \
|
||||||
SMESH_SMESHGUI.hxx
|
SMESH_SMESHGUI.hxx
|
||||||
|
|
||||||
# Libraries targets
|
# Libraries targets
|
||||||
|
@ -41,6 +41,14 @@ salomeinclude_HEADERS = \
|
|||||||
SMESH_Mesh_i.hxx \
|
SMESH_Mesh_i.hxx \
|
||||||
SMESH_Hypothesis_i.hxx \
|
SMESH_Hypothesis_i.hxx \
|
||||||
SMESH_PythonDump.hxx \
|
SMESH_PythonDump.hxx \
|
||||||
|
SMESH_Group_i.hxx \
|
||||||
|
SMESH_MEDMesh_i.hxx \
|
||||||
|
SMESH_Filter_i.hxx \
|
||||||
|
SMESH_MeshEditor_i.hxx \
|
||||||
|
SMESH_MEDFamily_i.hxx \
|
||||||
|
SMESH_MEDSupport_i.hxx \
|
||||||
|
SMESH_Pattern_i.hxx \
|
||||||
|
SMESH_2smeshpy.hxx \
|
||||||
SMESH.hxx
|
SMESH.hxx
|
||||||
|
|
||||||
# Scripts to be installed.
|
# Scripts to be installed.
|
||||||
|
@ -95,5 +95,5 @@ dist_salomescript_DATA= \
|
|||||||
PAL_MESH_043_3D.py \
|
PAL_MESH_043_3D.py \
|
||||||
SMESH_reg.py
|
SMESH_reg.py
|
||||||
|
|
||||||
EXPORT_SHAREDPYSCRIPTS = \
|
sharedpkgpython_PYTHON = \
|
||||||
SMESH_shared_modules.py
|
SMESH_shared_modules.py
|
||||||
|
@ -38,45 +38,28 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
# Step 2: build the dynamic library from cpp built source files and
|
# Step 2: build the dynamic library from cpp built source files and
|
||||||
# dependant libraries.
|
# dependant libraries.
|
||||||
#
|
#
|
||||||
# swig_wrap.cpp -- gcc --> swig_wrap.o |-- link --> _libSALOME_Swig.la
|
# swig_wrap.cpp -- gcc --> swig_wrap.o |-- link --> _libSMESH_Swig.la
|
||||||
# + |
|
# + |
|
||||||
# dependant libs |
|
# dependant libs |
|
||||||
#
|
#
|
||||||
# The file libSALOME_Swigcmodule.py will be installed in
|
# The file libSMESH_Swig.py will be installed to the
|
||||||
# <prefix>/lib/python<version>/site-package/salome.
|
# <prefix>/bin/salome directory.
|
||||||
# The library will be installed in the same place.
|
# The library _libSMESH_Swig.so will be installed to the
|
||||||
|
# <prefix>/lib/python<version>/site-package/salome directory.
|
||||||
#
|
#
|
||||||
|
|
||||||
# this option puts it to dist
|
SWIG_FLAGS = @SWIG_FLAGS@ -I$(srcdir) -I$(srcdir)/../SMESHGUI
|
||||||
#BUILT_SOURCES = swig_wrap.cpp
|
|
||||||
|
|
||||||
salomeinclude_HEADERS = \
|
|
||||||
libSMESH_Swig.h \
|
|
||||||
libSMESH_Swig.i
|
|
||||||
|
|
||||||
SWIG_FLAGS = \
|
|
||||||
@SWIG_FLAGS@ \
|
|
||||||
-I$(srcdir) \
|
|
||||||
-I$(srcdir)/../SMESHGUI
|
|
||||||
|
|
||||||
SWIG_SOURCES = libSMESH_Swig.i
|
SWIG_SOURCES = libSMESH_Swig.i
|
||||||
|
|
||||||
|
salomeinclude_HEADERS = $(SWIG_SOURCES) libSMESH_Swig.h
|
||||||
|
|
||||||
# Libraries targets
|
# Libraries targets
|
||||||
|
lib_LTLIBRARIES = _libSMESH_Swig.la
|
||||||
|
_libSMESH_Swig_la_SOURCES = $(SWIG_SOURCES) libSMESH_Swig.h libSMESH_Swig.cxx
|
||||||
|
nodist__libSMESH_Swig_la_SOURCES = swig_wrap.cpp
|
||||||
|
nodist_salomepython_DATA = libSMESH_Swig.py
|
||||||
|
|
||||||
lib_LTLIBRARIES = libSMESH_Swigcmodule.la
|
_libSMESH_Swig_la_CPPFLAGS = \
|
||||||
|
|
||||||
nodist_pkgpython_DATA = libSMESH_Swig.py
|
|
||||||
libSMESH_Swig.py: swig_wrap.cpp
|
|
||||||
|
|
||||||
libSMESH_Swigcmodule_la_SOURCES = \
|
|
||||||
$(BUILT_SOURCES) \
|
|
||||||
$(SWIG_SOURCES) \
|
|
||||||
libSMESH_Swig.cxx
|
|
||||||
|
|
||||||
nodist_libSMESH_Swigcmodule_la_SOURCES = \
|
|
||||||
swig_wrap.cpp
|
|
||||||
|
|
||||||
libSMESH_Swigcmodule_la_CPPFLAGS = \
|
|
||||||
$(QT_INCLUDES) \
|
$(QT_INCLUDES) \
|
||||||
$(PYTHON_INCLUDES) \
|
$(PYTHON_INCLUDES) \
|
||||||
$(CAS_CPPFLAGS) \
|
$(CAS_CPPFLAGS) \
|
||||||
@ -93,25 +76,27 @@ libSMESH_Swigcmodule_la_CPPFLAGS = \
|
|||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl \
|
||||||
-I$(top_builddir)/salome_adm/unix
|
-I$(top_builddir)/salome_adm/unix
|
||||||
|
|
||||||
libSMESH_Swigcmodule_la_LDFLAGS = \
|
_libSMESH_Swig_la_LDFLAGS = -module
|
||||||
../SMESHGUI/libSMESH.la \
|
_libSMESH_Swig_la_LIBADD = ../SMESHGUI/libSMESH.la \
|
||||||
$(KERNEL_LDFLAGS) -lSalomeGenericObj -lSALOMELocalTrace \
|
$(KERNEL_LDFLAGS) -lSalomeGenericObj -lSALOMELocalTrace \
|
||||||
$(GUI_LDFLAGS) -lCAM -lsuit -lqtx -lSalomeApp -lstd -lEvent \
|
$(GUI_LDFLAGS) -lCAM -lsuit -lqtx -lSalomeApp -lstd -lEvent \
|
||||||
$(PYTHON_LIBS) \
|
$(PYTHON_LIBS) $(QT_MT_LIBS)
|
||||||
$(QT_MT_LIBS)
|
|
||||||
|
|
||||||
|
|
||||||
swig_wrap.cpp : $(SWIG_SOURCES)
|
swig_wrap.cpp : $(SWIG_SOURCES)
|
||||||
$(SWIG) $(SWIG_FLAGS) -o $@ $<
|
$(SWIG) $(SWIG_FLAGS) -o $@ $<
|
||||||
|
|
||||||
CLEANFILES = \
|
libSMESH_Swig.py: swig_wrap.cpp
|
||||||
swig_wrap.cpp
|
|
||||||
|
|
||||||
# Scripts to be installed.
|
CLEANFILES = swig_wrap.cpp libSMESH_Swig.py
|
||||||
dist_salomescript_DATA= \
|
|
||||||
libSMESH_Swig.py
|
|
||||||
|
|
||||||
install-exec-hook: $(libdir)/_libSMESH_Swig.so
|
#
|
||||||
|
# ===============================================================
|
||||||
|
# Files to be installed
|
||||||
|
# ===============================================================
|
||||||
|
#
|
||||||
|
|
||||||
$(libdir)/_libSMESH_Swig.so:
|
# Scripts to be installed (distributed)
|
||||||
( cd $(libdir); ln -sf libSMESH_Swigcmodule.so _libSMESH_Swig.so; )
|
dist_salomescript_DATA =
|
||||||
|
|
||||||
|
# Scripts to be installed (non-distributed)
|
||||||
|
nodist_salomescript_DATA =
|
||||||
|
@ -43,6 +43,7 @@ salomeinclude_HEADERS = \
|
|||||||
StdMeshers_Quadrangle_2D.hxx \
|
StdMeshers_Quadrangle_2D.hxx \
|
||||||
StdMeshers_MEFISTO_2D.hxx \
|
StdMeshers_MEFISTO_2D.hxx \
|
||||||
StdMeshers_Hexa_3D.hxx \
|
StdMeshers_Hexa_3D.hxx \
|
||||||
|
StdMeshers_Penta_3D.hxx \
|
||||||
StdMeshers_AutomaticLength.hxx \
|
StdMeshers_AutomaticLength.hxx \
|
||||||
StdMeshers_Distribution.hxx \
|
StdMeshers_Distribution.hxx \
|
||||||
StdMeshers_QuadranglePreference.hxx \
|
StdMeshers_QuadranglePreference.hxx \
|
||||||
|
@ -29,7 +29,13 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
|
|
||||||
# header files
|
# header files
|
||||||
salomeinclude_HEADERS = \
|
salomeinclude_HEADERS = \
|
||||||
StdMeshersGUI_StdHypothesisCreator.h
|
StdMeshersGUI_StdHypothesisCreator.h \
|
||||||
|
SMESH_StdMeshersGUI.hxx \
|
||||||
|
StdMeshersGUI_DistrPreview.h \
|
||||||
|
StdMeshersGUI_DistrTable.h \
|
||||||
|
StdMeshersGUI_NbSegmentsCreator.h \
|
||||||
|
StdMeshersGUI_ObjectReferenceParamWdg.h \
|
||||||
|
StdMeshersGUI_LayerDistributionParamWdg.h
|
||||||
|
|
||||||
# Libraries targets
|
# Libraries targets
|
||||||
lib_LTLIBRARIES = libStdMeshersGUI.la
|
lib_LTLIBRARIES = libStdMeshersGUI.la
|
||||||
|
@ -58,6 +58,7 @@ salomeinclude_HEADERS = \
|
|||||||
StdMeshers_CompositeSegment_1D_i.hxx \
|
StdMeshers_CompositeSegment_1D_i.hxx \
|
||||||
StdMeshers_SegmentAroundVertex_0D_i.hxx \
|
StdMeshers_SegmentAroundVertex_0D_i.hxx \
|
||||||
StdMeshers_SegmentLengthAroundVertex_i.hxx \
|
StdMeshers_SegmentLengthAroundVertex_i.hxx \
|
||||||
|
StdMeshers_UseExisting_1D2D_i.hxx \
|
||||||
StdMeshers_TrianglePreference_i.hxx \
|
StdMeshers_TrianglePreference_i.hxx \
|
||||||
SMESH_StdMeshers_I.hxx
|
SMESH_StdMeshers_I.hxx
|
||||||
|
|
||||||
|